Output block using decorator in the current buffer.

Property definitions

markdown $ MarkdownProcessor :: emit
	# Output `block` using `decorator` in the current buffer.
	fun emit(block: Block): Text do
		var buffer = push_buffer
		block.emit(self)
		pop_buffer
		return buffer
	end
lib/markdown/markdown.nit:511,2--517,4