Mercurial > public > hgext.markdown
changeset 20:c49ba42e5f0e
Fix render of nested folders
author | theaspect@gmail.com |
---|---|
date | Mon, 13 May 2013 21:22:16 +0700 |
parents | 9ebbaae19100 |
children | c90dd6006009 68c3007cd59d |
files | __init__.py |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/__init__.py Mon May 13 19:13:41 2013 +0700 +++ b/__init__.py Mon May 13 21:22:16 2013 +0700 @@ -65,6 +65,9 @@ f = req.form.get('file', [''])[0] parts = os.path.splitext(f) + if not parts[-1] == '.markdown' and not parts[-1] == '.md': + return orig(web, req, tmpl) + try: fctx = webutil.filectx(web.repo, req) text = fctx.data().decode("utf-8") @@ -77,9 +80,6 @@ if util.binary(text): return webcommands.rawfile(web, req, tmpl) - if not parts[1] == '.markdown' and not parts[1] == '.md': - return orig(web, req, tmpl) - md = markdown.Markdown(extensions=['wikilinks(base_url={0},end_url={1})'.format('', parts[1])]) html = md.convert(text).encode("utf-8")