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

Default style is green.

Property definitions

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