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

Default style is white and bold.

Property definitions

nitc :: metrics_base $ 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/metrics_base.nit:111,2--117,4