summaryrefslogtreecommitdiffstats
path: root/coffin/contrib/markup/templatetags/markup.py
diff options
context:
space:
mode:
Diffstat (limited to 'coffin/contrib/markup/templatetags/markup.py')
-rw-r--r--coffin/contrib/markup/templatetags/markup.py15
1 files changed, 0 insertions, 15 deletions
diff --git a/coffin/contrib/markup/templatetags/markup.py b/coffin/contrib/markup/templatetags/markup.py
deleted file mode 100644
index 0d6b92f9..00000000
--- a/coffin/contrib/markup/templatetags/markup.py
+++ /dev/null
@@ -1,15 +0,0 @@
-"""Makes the template filters from the ``django.contrib.markup`` app
-available to both the Jinja2 and Django engines.
-
-In other words, adding ``coffin.contrib.markup`` to your INSTALLED_APPS
-setting will enable the markup filters not only through Coffin, but
-also through the default Django template system.
-"""
-
-from coffin.template import Library as CoffinLibrary
-from django.contrib.markup.templatetags.markup import register
-
-
-# Convert Django's Library into a Coffin Library object, which will
-# make sure the filters are correctly ported to Jinja2.
-register = CoffinLibrary.from_django(register) \ No newline at end of file