Renders the synopsis as a HTML comment block.

Property definitions

nitc :: html_model $ MDoc :: html_synopsis
	# Renders the synopsis as a HTML comment block.
	var html_synopsis: Writable is lazy do
		var res = new Template
		var syn = inline_proc.process(content.first)
		res.add "<span class=\"synopsis nitdoc\">{syn}</span>"
		return res
	end
src/doc/templates/html_model.nit:395,2--401,4