]> git.sur5r.net Git - i3/i3.github.io/blob - _filters/textile_template.py
re-add /blog + feed (had quite a few subscribers)
[i3/i3.github.io] / _filters / textile_template.py
1 import textile
2
3 config = {
4     'name': "Textile",
5     'description': "Renders textile formatted text to HTML",
6     'aliases': ['textile']
7     }
8
9
10 def run(content):
11     return textile.textile(content)