Returns the synopsis formatted for the console

Property definitions

nitc :: term_model $ MDoc :: cs_short_comment
	# Returns the synopsis formatted for the console
	fun cs_short_comment(no_color: nullable Bool): String do
		if no_color == null or not no_color then
			return content.first.green
		end
		return content.first
	end
src/doc/templates/term_model.nit:38,2--44,4