Property definitions

markdown2 $ MdCodeBlock :: defaultinit
# A block of code (indented or fenced)
abstract class MdCodeBlock
	super MdBlock

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

	# Fence info / meta
	var info: nullable String = null is writable

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