Emit the containts of self, lines or blocks.

Property definitions

markdown $ Block :: emit_in
	# Emit the containts of `self`, lines or blocks.
	fun emit_in(v: MarkdownProcessor) do
		block.remove_surrounding_empty_lines
		if block.has_lines then
			emit_lines(v)
		else
			emit_blocks(v)
		end
	end
lib/markdown/markdown.nit:1144,2--1152,4