This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Source code for article: | |
# https://hakibenita.com/django-markdown | |
from typing import Optional | |
import re | |
import markdown | |
from markdown.inlinepatterns import LinkInlineProcessor, LINK_RE | |
from urllib.parse import urlparse | |
from django.core.exceptions import ValidationError |