Add a blank line to the output

Property definitions

markdown2 $ LatexRenderer :: add_line
	# Add a blank line to the output
	fun add_line do
		if not latex.is_empty and latex.last != '\n' then
			latex.add '\n'
		end
	end
lib/markdown2/markdown_latex_rendering.nit:77,2--82,4