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

Default style is white and nobold.

Property definitions

nitc :: nitsmell_toolcontext $ ToolContext :: format_h3
	# Format and colorize a string heading of level 3 for console output.
	#
	# Default style is white and nobold.
	fun format_h3(str: String): String do
		if opt_nocolors.value then return str
		return str
	end
src/metrics/nitsmell_toolcontext.nit:80,2--86,4