Remove extraneous newlines from XHTML output

This commit is contained in:
Matthew Iversen 2013-12-05 12:04:55 +11:00
parent 0bdfed4b25
commit 5ed9d21ec7
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ module Jekyll
end
def convert(content)
converted = Maruku.new(content, :error_stream => @errors).to_html
converted = Maruku.new(content, :error_stream => @errors).to_html.strip
print_errors_and_fail unless @errors.empty?
converted
end