Property definitions

nitc $ APIDocdown :: defaultinit
# Docdown handler accept docdown as POST data and render it as HTML
class APIDocdown
	super APIHandler

	redef fun post(req, res) do
		res.html config.md_processor.process(req.body)
	end
end
src/doc/api/api_docdown.nit:38,1--45,3