Property definitions

markdown $ TokenImage :: defaultinit
# A markdown image token.
class TokenImage
	super TokenLinkOrImage

	redef fun emit_hyper(v) do
		v.decorator.add_image(v, link.as(not null), name.as(not null), comment)
	end
end
lib/markdown/markdown.nit:2203,1--2210,3