Format and colorize a string heading of level 5 for console output.

Default style is light gray.

Property definitions

nitc :: nitsmell_toolcontext $ ToolContext :: format_p
	# Format and colorize a string heading of level 5 for console output.
	#
	# Default style is light gray.
	fun format_p(str: String): String do
		if opt_nocolors.value then return str
		return str.light_gray
	end
src/metrics/nitsmell_toolcontext.nit:96,2--102,4