I'm using django-wmd-editor in my project, and by following the readme I could easily make it work in the admin. It's working like a charm, and it's really easy to set up. However in the readme I didn't find anything about how to display/convert the entered markdown in the templates. The app uses showdown.js to preview the result, but in the django contrib there's markdown too. Which one should / can I use? Which is the prefered way?
I tried the django.contrib.markup which works, but looks different. I think it's because the admin and the site css are different. So the preview in the admin will differ from the preview in the template, which is I think not good, how can I make it look the same?
Thanks B.