Property definitions

markdown2 $ MdListBlock :: defaultinit
# An ordered or unordered list block
abstract class MdListBlock
	super MdBlock

	# Does this list contains line breaks?
	var is_tight: Bool = false is writable

	redef var is_container = true

	redef fun can_contain(block) do return block isa MdListItem

	redef fun to_s_attrs do return "{super}, is_tight={is_tight}"
end
lib/markdown2/markdown_ast.nit:288,1--300,3