Property definitions

markdown :: markdown $ Text :: is_valid_html_tag
	private fun is_valid_html_tag: Bool do
		if is_empty then return false
		for c in self do
			if not c.is_alpha then return false
		end
		return true
	end
lib/markdown/markdown.nit:2555,2--2561,4