When using Markdown libraries, I seem to get the following error:
Error in "markdown" filter: Django does not support versions of Python markdown library <2.1.
As an example, this happens in a tag, for example:
{{ticket.get_description|markdown:"safe,footnotes,tables"}}
The get_description function get_description defined in the Ticket model. We recently updated Django 1.5, and the code was written before Django 1.4. I also updated the Markup library to 2.3.1, but the problem still persists. I also cleaned up the old .pyc files to be sure.
From what I read, the django.contrib.markup libraries django.contrib.markup out of date . So what is the proposed solution / alternative?
source share