Don't force newlines before sections
This commit is contained in:
parent
3131556bb5
commit
5ea7bdb5d0
3 changed files with 3 additions and 3 deletions
|
@ -130,7 +130,7 @@ module Twine
|
|||
|
||||
if section.name && section.name.length > 0
|
||||
section_header = format_section_header(section)
|
||||
result += "\n#{section_header}" if section_header
|
||||
result += "#{section_header}" if section_header
|
||||
end
|
||||
|
||||
definitions.map! { |definition| format_definition(definition, lang) }
|
||||
|
|
|
@ -100,7 +100,7 @@ module Twine
|
|||
end
|
||||
|
||||
def format_sections(twine_file, lang)
|
||||
result = '<resources>'
|
||||
result = "<resources>\n"
|
||||
|
||||
result += super + "\n"
|
||||
|
||||
|
|
|
@ -75,7 +75,7 @@ module Twine
|
|||
end
|
||||
|
||||
def format_section_header(section)
|
||||
"\n/********** #{section.name} **********/"
|
||||
"\n\n/********** #{section.name} **********/"
|
||||
end
|
||||
|
||||
def key_value_pattern
|
||||
|
|
Reference in a new issue