Count block lines.

Property definitions

markdown $ MDBlock :: count_lines
	# Count block lines.
	fun count_lines: Int do
		var count = 0
		var line = first_line
		while line != null do
			count += 1
			line = line.next
		end
		return count
	end
lib/markdown/markdown.nit:990,2--999,4