Renders the comment without the synopsis as a HTML comment block.

Property definitions

nitc :: html_model $ MDoc :: html_comment=
	# Renders the comment without the synopsis as a HTML comment block.
	var html_comment: Writable is lazy do
		var lines = content.to_a
		if not lines.is_empty then lines.shift
		return lines_to_html(lines)
	end
src/doc/templates/html_model.nit:403,2--408,4