-
Notifications
You must be signed in to change notification settings - Fork 143
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
django version >= 2.0 removes the django.core.urlresolvers module #81
Comments
Indeed, it is preventing me to use django_markdown with my django 2.0.1 project |
This library is not maintained anymore, any alternative to use with django 2.0+ ? |
It will be useful to add this in the README :) |
Here is what I use now (with Django 2.0+): https://github.com/neutronX/django-markdownx |
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 |
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'
The text was updated successfully, but these errors were encountered: