Property definitions

markdown $ LineEmpty :: defaultinit
# An empty markdown line.
class LineEmpty
	super Line

	redef fun process(v) do
		v.current_line = v.current_line.as(not null).next
	end
end
lib/markdown/markdown.nit:1642,1--1649,3