#94 Removed option to wrap referenced keys in square brackets.

This commit is contained in:
Sebastian Ludwig 2015-10-10 14:15:30 +02:00
parent 239676802b
commit 327c37c358
2 changed files with 2 additions and 8 deletions

View file

@ -37,7 +37,7 @@ Whitepace in this file is mostly ignored. If you absolutely need to put spaces a
### References
If you want a key to inherit the values of another key, you can use a reference. Any property not specified for a key will be taken from the reference. References may optionally be enclosed by square brackets like the keys the reference.
If you want a key to inherit the values of another key, you can use a reference. Any property not specified for a key will be taken from the reference.
### Example

View file

@ -85,11 +85,6 @@ module Twine
return match[1] if match
end
def match_reference(text)
match = /^\[?(.+?)\]?$/.match(text)
return match[1] if match
end
public
def initialize
@ -169,8 +164,7 @@ module Twine
when 'tags'
current_row.tags = value.split(',')
when 'ref'
key = match_reference(value)
current_row.reference_key = key if key
current_row.reference_key = value if value
else
if !@language_codes.include? key
add_language_code(key)