mirror of
https://github.com/Hopiu/django-markdownx.git
synced 2026-03-17 14:00:22 +00:00
* updates URLs to Django 4 pattern * Checks for Ajax request using `x-requested-with` header * housekeeping * housekeeping * adds zlib to windows runs * uses specific python version * updates git URL * disables testing on Windows * changes docs path * changes docs path * changes docs path * Update documentations * removes docs Co-authored-by: GitHub Action <action@github.com>
11 lines
267 B
Python
11 lines
267 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')),
|
|
]
|