A Django filter that transforms Markdown to HTML.

Allows dynamic markdown code to be inserted at runtime in the Django templating engine. Input is sanitized and converted to HTML. Django filters are packaged in PIP package for community reuse.

Example

{{'Some *test* [link](#)'|markdownify|safe }}

is transformed to:

<p>
  Some <em>test</em> <a href="" rel="nofollow">link</a>
</p>