kawaz.apps.kfm.extras.autolink のソースコード

import re
from django.template.loader import render_to_string
from .utils import is_quoated


PATTERN = re.compile(
    r'(?:https?|ftp)://[\.\-\+\?\(\)\{\}\^\$\w\d/:;@&=,%#]+',
    flags=re.MULTILINE,
)
TEMPLATE_NAME = 'kfm/extras/autolink.html'