klen / django_markdown

Django markdown support and wysiwig
GNU Lesser General Public License v3.0
391 stars 143 forks source link

django version >= 2.0 removes the django.core.urlresolvers module #81

Open riberaborrell opened 6 years ago

riberaborrell commented 6 years ago

The django.core.urlresolvers module is removed in favor of its new location, django.urls. https://docs.djangoproject.com/en/2.0/releases/2.0/ Therefore, such an error: ModuleNotFoundError: No module named 'django.core.urlresolvers'

aaamourao commented 6 years ago

Indeed, it is preventing me to use django_markdown with my django 2.0.1 project

Perados commented 6 years ago

This library is not maintained anymore, any alternative to use with django 2.0+ ?

mireille-raad commented 6 years ago

It will be useful to add this in the README :)

Perados commented 6 years ago

Here is what I use now (with Django 2.0+): https://github.com/neutronX/django-markdownx

IanTobar commented 5 years ago

This issue isn't resolved. For anyone who wants to use django_markdown in 2.0+ you need to alter the first line in utils.py from django.core.urlresolvers to django.urls