mirror of
https://github.com/Hopiu/django-markdownx.git
synced 2026-03-31 12:10:23 +00:00
18 lines
396 B
Python
Executable file
18 lines
396 B
Python
Executable file
"""
|
|
**MarkdownX** default URLs, to be added to URLs in the main project.
|
|
|
|
See URLs in :doc:`../../example` to learn more.
|
|
"""
|
|
|
|
from django.urls import path
|
|
|
|
from .views import (
|
|
ImageUploadView,
|
|
MarkdownifyView,
|
|
)
|
|
|
|
|
|
urlpatterns = [
|
|
path('upload', ImageUploadView.as_view(), name='markdownx_upload'),
|
|
path('markdownify', MarkdownifyView.as_view(), name='markdownx_markdownify'),
|
|
]
|