]> git.sur5r.net Git - i3/i3.github.io/blobdiff - _filters/markdown_template.py
switch from blogofile to jekyll for building the site
[i3/i3.github.io] / _filters / markdown_template.py
diff --git a/_filters/markdown_template.py b/_filters/markdown_template.py
deleted file mode 100644 (file)
index c572efa..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-import markdown
-import logging
-
-config = {
-    'name': "Markdown",
-    'description': "Renders markdown formatted text to HTML",
-    'aliases': ['markdown']
-    }
-
-
-#Markdown logging is noisy, pot it down:
-logging.getLogger("MARKDOWN").setLevel(logging.ERROR)
-
-
-def run(content):
-    return markdown.markdown(content)