mirror of
https://github.com/Hopiu/django-markdownx.git
synced 2026-04-25 23:44:45 +00:00
9 lines
187 B
Python
9 lines
187 B
Python
|
|
from django.conf.urls import include, url
|
||
|
|
|
||
|
|
from .views import TestView
|
||
|
|
|
||
|
|
urlpatterns = [
|
||
|
|
url(r'^testview/$', TestView.as_view()),
|
||
|
|
url(r'^markdownx/', include('markdownx.urls')),
|
||
|
|
]
|