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

Default style is white and bold.

Property definitions

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