Mercurial > hg-website
annotate filters.py @ 367:bb27170e2218
Updated from typeface.js 0.13 to 0.15 for IE9 compat.
author | Tatham Oddie <tatham@oddie.com.au> |
---|---|
date | Tue, 14 Jun 2011 21:39:48 +1000 |
parents | 3e6869f76b8d |
children |
rev | line source |
---|---|
247
3e6869f76b8d
Add the blatter config and framework files.
Steve Losh <steve@stevelosh.com>
parents:
diff
changeset
|
1 import markdown as _markdown |
3e6869f76b8d
Add the blatter config and framework files.
Steve Losh <steve@stevelosh.com>
parents:
diff
changeset
|
2 from jinja2 import Markup |
3e6869f76b8d
Add the blatter config and framework files.
Steve Losh <steve@stevelosh.com>
parents:
diff
changeset
|
3 |
3e6869f76b8d
Add the blatter config and framework files.
Steve Losh <steve@stevelosh.com>
parents:
diff
changeset
|
4 md = _markdown.Markdown(extensions=['toc'], safe_mode=False) |
3e6869f76b8d
Add the blatter config and framework files.
Steve Losh <steve@stevelosh.com>
parents:
diff
changeset
|
5 |
3e6869f76b8d
Add the blatter config and framework files.
Steve Losh <steve@stevelosh.com>
parents:
diff
changeset
|
6 def mdown(value): |
3e6869f76b8d
Add the blatter config and framework files.
Steve Losh <steve@stevelosh.com>
parents:
diff
changeset
|
7 return Markup(md.convert(value)) |