Property definitions

markdown2 $ MdIndentedCodeBlock :: defaultinit
# A block code that starts with an indent
class MdIndentedCodeBlock
	super MdCodeBlock

	# Does this block use tabs instead of spaces?
	var use_tabs: Bool

	redef fun to_s_attrs do return "{super}, use_tabs={use_tabs}"
end
lib/markdown2/markdown_ast.nit:236,1--244,3