Remote empty sections before joining them together
Previously, a comma was being printed on the last line of every section, even if that section did not contribute any rows to the formatted output (e.g., no rows within that section had the tags needed to be output during this run). When such a zero-row section happens, it results in an line with only a comma on it, which is not valid json. This can make incremental adjustment of the jquery files rather tedious, even when using gui tools to quickly reject changes.
This commit is contained in:
parent
50b1e90f8f
commit
06cd167f2b
1 changed files with 1 additions and 0 deletions
|
@ -50,6 +50,7 @@ module Twine
|
|||
|
||||
def format_sections(twine_file, lang)
|
||||
sections = twine_file.sections.map { |section| format_section(section, lang) }
|
||||
sections.delete_if &:empty?
|
||||
sections.join(",\n\n")
|
||||
end
|
||||
|
||||
|
|
Reference in a new issue