Easy markdown and syntax highlighting in Django
Hi there, I'm new to Django. I love the contributed ecosystem, but all of the options that I found there for dealing with Markdown were just too heavy. I didn't need a Wysiwyg editor, I just wanted an output filter. As it turns out this is exceptionally easy to do!
Python has a really amazing lib situation, so I just found the smallest python Markdown lib that I could, it's called "mistune". Do a pip install mistune
.
So within your app, let's call it "blog", create a directory called...