From ed3d74e61300f91818eeff9dad7e9d35c556f75a Mon Sep 17 00:00:00 2001 From: Weitian LI Date: Tue, 24 Jun 2014 16:39:42 +0800 Subject: Added app schedule, tools and archive/templatetags; updated settings. * Added app 'schedule' to provides a more generic schedule page * Added fake app 'tools' to holds generic utilities * Moved notice/templatetags to tools/templatetags * Small change to archive.models.Archive display format * Added archive/templatetags * Small update to introduction page --- tools/__init__.py | 0 tools/templatetags/__init__.py | 0 tools/templatetags/my_markdown.py | 26 ++++++++++++++++++++++++++ 3 files changed, 26 insertions(+) create mode 100644 tools/__init__.py create mode 100644 tools/templatetags/__init__.py create mode 100644 tools/templatetags/my_markdown.py (limited to 'tools') diff --git a/tools/__init__.py b/tools/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tools/templatetags/__init__.py b/tools/templatetags/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tools/templatetags/my_markdown.py b/tools/templatetags/my_markdown.py new file mode 100644 index 0000000..842f72f --- /dev/null +++ b/tools/templatetags/my_markdown.py @@ -0,0 +1,26 @@ +# -*- coding: utf-8 -*- + +""" +implement my own 'markdown' template tag +requires 'python-markdown' (pip install markdown) +""" +# ref: http://www.dominicrodger.com/django-markdown.html + +import markdown + +from django import template +from django.template.defaultfilters import stringfilter +from django.utils.encoding import force_unicode +from django.utils.safestring import mark_safe + +register = template.Library() + +@register.filter(is_safe=True) +@stringfilter +def my_markdown(value): + extensions = ["nl2br", ] + + return mark_safe(markdown.markdown(force_unicode(value), + extensions, + safe_mode=True, + enable_attributes=False)) -- cgit v1.2.2