Attempt to parse an HTML entity

Property definitions

markdown2 $ MdInlineParser :: parse_entity
	# Attempt to parse an HTML entity
	private fun parse_entity: Bool do
		var m = match(re_entity_here)
		if m != null then
			append_text(m)
			return true
		end
		return false
	end
lib/markdown2/markdown_inline_parsing.nit:812,2--820,4