author | Alberto Bertogli
<albertito@blitiri.com.ar> 2022-08-31 20:07:53 UTC |
committer | Alberto Bertogli
<albertito@blitiri.com.ar> 2022-08-31 20:07:53 UTC |
parent | 9f3df4899fbb736d77ae1ded8104d8a8b83594c6 |
utils.py | +3 | -3 |
diff --git a/utils.py b/utils.py index 9c2c45a..b19c9d3 100644 --- a/utils.py +++ b/utils.py @@ -177,7 +177,7 @@ if markdown: tag.set("href", new_target) class RewriteLocalLinksExtension(markdown.Extension): - def extendMarkdown(self, md, md_globals): - md.treeprocessors.add( - "RewriteLocalLinks", RewriteLocalLinks(), "_end" + def extendMarkdown(self, md): + md.treeprocessors.register( + RewriteLocalLinks(), "RewriteLocalLinks", 1000 )