annotate filters.py @ 360:8e3b10220bb9

Mercurial version x.y.z, z=0 is always incorrect; disregard. An erroneous latest.dat should be fixed, but this patch will prevent such errors from having a negative effect on the website. (They cause prior versions not to be displayed even when they should be, if Downloader.maxversions is nonzero.) geocommit(1.0): lat 49.0076053, long 8.4207923, hacc 82.0, src nmg; Karlsruhe DE
author David Champion <dgc@uchicago.edu>
date Wed, 02 Mar 2011 11:47:34 -0600
parents 3e6869f76b8d
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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))