mirror of
https://github.com/Hopiu/django-markdownx.git
synced 2026-05-03 02:54:42 +00:00
11 lines
269 B
Python
11 lines
269 B
Python
try:
|
|
from django.conf.urls import include, url
|
|
except ImportError:
|
|
from django.urls import include, re_path as url
|
|
|
|
from .views import TestView
|
|
|
|
urlpatterns = [
|
|
url(r'^testview/$', TestView.as_view()),
|
|
url(r'^markdownx/$', include('markdownx.urls')),
|
|
]
|