Render the message as a HTML string

Property definitions

nitc :: md_commands $ CmdMessage :: to_md
	# Render the message as a HTML string
	fun to_md: Writable is abstract
src/doc/templates/md_commands.nit:34,2--35,32

nitc :: md_commands $ CmdError :: to_md
	redef fun to_md do return "**Error: {to_s}**"
src/doc/templates/md_commands.nit:39,2--46

nitc :: md_commands $ CmdWarning :: to_md
	redef fun to_md do return "**Warning: {to_s}**"
src/doc/templates/md_commands.nit:43,2--48