Emit the hyperlink as link or image.

Property definitions

markdown $ TokenLinkOrImage :: emit_hyper
	# Emit the hyperlink as link or image.
	private fun emit_hyper(v: MarkdownProcessor) is abstract
lib/markdown/markdown.nit:2097,2--2098,57

markdown $ TokenImage :: emit_hyper
	redef fun emit_hyper(v) do
		v.decorator.add_image(v, link.as(not null), name.as(not null), comment)
	end
lib/markdown/markdown.nit:2207,2--2209,4