diff --git a/src/formatters/html.cr b/src/formatters/html.cr index 8c4abf5..99c0e65 100644 --- a/src/formatters/html.cr +++ b/src/formatters/html.cr @@ -42,7 +42,7 @@ module Tartrazine pre_style= wrap_long_lines? ? "style=\"white-space: pre-wrap; word-break: break-word;\"" : "" outp << "
"
end
- ""
+ outp << ""
lines.each_with_index(offset: line_number_start - 1) do |line, i|
line_label = line_numbers? ? "#{i + 1}".rjust(4).ljust(5) : ""
line_class = highlighted?(i + 1) ? "class=\"#{get_css_class("LineHighlight", theme)}\"" : ""