This commit is contained in:
Roberto Alsina 2024-08-15 17:05:03 -03:00
parent 029495590c
commit bf257a5b82
2 changed files with 2 additions and 4 deletions

View File

@ -57,9 +57,7 @@ module Tartrazine
ensure_nl: false,
}
property xml : String = ""
property states = {} of String => State
property state_stack = ["root"]
# Turn the text into a list of tokens. The `usingself` parameter

View File

@ -77,7 +77,7 @@ if options["-f"]
if formatter.is_a?(Tartrazine::Html) && options["--css"]
File.open("#{options["-t"].as(String)}.css", "w") do |outf|
outf.puts formatter.style_defs
outf << formatter.style_defs
end
exit 0
end
@ -91,7 +91,7 @@ if options["-f"]
puts output
else
File.open(options["-o"].as(String), "w") do |outf|
outf.puts output
outf << output
end
end
end