I would like to render Markdown to HTML so that I could simply write markdown inside my HTML templates.
Example: home.html:
#This is a simple markdown in HTML
And I would like Django to interpret my Markdown and display it as if it was HTML:
<h1> This is a simple markdown in HTML </h1>
What would be the easiest way to implement it?