9f1117e477471b13f93392ebacf83fdf43838110
[prawokultury.git] / prawokultury / templatetags / markup_tags.py
1 # -*- coding: utf-8 -*-
2 # This file is part of PrawoKultury, licensed under GNU Affero GPLv3 or later.
3 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
4 #
5 from django import template
6 from django.utils.safestring import mark_safe
7 from prawokultury import helpers
8
9 register = template.Library()
10
11
12 @register.filter
13 def textile_pl(node):
14     return mark_safe(helpers.textile_pl(node))
15
16 @register.filter
17 def textile_restricted_pl(node):
18     return mark_safe(helpers.textile_restricted_pl(node))