Add a blank line to the output

Property definitions

markdown2 $ HtmlRenderer :: add_line
	# Add a blank line to the output
	fun add_line do
		if last_char != null and last_char != '\n' then
			add "\n"
		end
	end
lib/markdown2/markdown_html_rendering.nit:67,2--72,4