Property definitions

markdown2 $ MdDocument :: defaultinit
# A Markdown document
class MdDocument
	super MdBlock

	redef var is_container = true

	redef fun can_contain(block) do return true
end
lib/markdown2/markdown_ast.nit:205,1--212,3