Property definitions

markdown $ BlockFence :: defaultinit
# A markdown code-fence block.
#
# Actually use the same implementation than `BlockCode`,
# this class is only used for typing purposes.
class BlockFence
	super BlockCode

	# Fence code lines start at 0 spaces.
	redef var line_start = 0
end
lib/markdown/markdown.nit:1264,1--1273,3