All comment lines except for the synopsis

Property definitions

nitc $ MDoc :: comment
	# All comment lines except for the synopsis
	var comment: String is lazy do
		var lines = content.to_a
		if not lines.is_empty then lines.shift
		return lines.join("\n")
	end
src/model/mdoc.nit:38,2--43,4