Mercurial > hg-website
annotate filters.py @ 343:b2a8c4590630
base: Add notice about Python included in binary packages
Also:
- Reorder "Requirements" to end, "Another OS?" first
- Remove unneeded 'class="typeface-js"'
- Remove html comment about Python version requirement
- Link "Python 2.4" to python.org instead of "get python" text (which is removed)
- Capitalize "Mercurial"
author | Adrian Buehlmann <adrian@cadifra.com> |
---|---|
date | Fri, 19 Nov 2010 18:27:57 +0100 |
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)) |