Mercurial > wikked
changeset 230:f74fe4d3e626
Process links before metas so that links inside metas are formatted.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Fri, 14 Mar 2014 08:37:37 -0700 |
parents | c1a814628461 |
children | 553dfa009650 |
files | wikked/formatter.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/wikked/formatter.py Fri Mar 14 08:37:13 2014 -0700 +++ b/wikked/formatter.py Fri Mar 14 08:37:37 2014 -0700 @@ -54,8 +54,8 @@ return text def _processWikiSyntax(self, ctx, text): + text = self._processWikiLinks(ctx, text) text = self._processWikiMeta(ctx, text) - text = self._processWikiLinks(ctx, text) return text def _processWikiMeta(self, ctx, text):