mirror of
https://github.com/Hopiu/django-markdownx.git
synced 2026-03-20 23:20:24 +00:00
8 lines
187 B
Python
8 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')),
|
|
]
|