I am trying to use django-markitup for textareas in a django 1.6 project with wiki syntax. But it is giving following error:
django.core.exceptions.ImproperlyConfigured: Could not import MARKITUP_FILTER ('django.contrib.markup.templatetags.markup.wiki', {}): No module named markup.templatetags.markup
I copied wiki set to python dist-packages - markitup directory, as by default markitup doesn't come with wiki set. I am getting toolbar of wiki syntax, but markup to HTML conversion is not happening properly because of above mentioned error.
After searching on google, I came to know that markup module is deprecated in django 1.5 and is removed from django 1.6
Then how to configure wiki syntax in django-markitup?