Post process the document parsed by parser

Property definitions

markdown2 $ MdPostProcessor :: post_process
	# Post process the `document` parsed by `parser`
	fun post_process(parser: MdParser, document: MdDocument) do
		self.document = document
		enter_visit(document)
		self.document = null
	end
lib/markdown2/markdown_block_parsing.nit:1376,2--1381,4