Don't force newlines before sections

This commit is contained in:
Dwayne Bailey 2024-08-13 13:23:44 +01:00
parent 3131556bb5
commit 5ea7bdb5d0
3 changed files with 3 additions and 3 deletions

View file

@ -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) }

View file

@ -100,7 +100,7 @@ module Twine
end
def format_sections(twine_file, lang)
result = '<resources>'
result = "<resources>\n"
result += super + "\n"

View file

@ -75,7 +75,7 @@ module Twine
end
def format_section_header(section)
"\n/********** #{section.name} **********/"
"\n\n/********** #{section.name} **********/"
end
def key_value_pattern