Property definitions

markdown2 $ MdHtmlBlock :: defaultinit
# An html block
class MdHtmlBlock
	super MdBlock

	# Literal content
	var literal: nullable String = null is writable

	redef fun to_s_attrs do return "{super}, literal={literal or else "null"}"
end
lib/markdown2/markdown_ast.nit:278,1--286,3