Mercurial > libervia-backend
diff sat/plugins/plugin_misc_text_syntaxes.py @ 4059:00dbc3370d35
plugin text syntaxes: fix `EscapeHTML` following massive snake_case renaming
author | Goffi <goffi@goffi.org> |
---|---|
date | Mon, 29 May 2023 17:52:25 +0200 |
parents | 524856bd7b19 |
children |
line wrap: on
line diff
--- a/sat/plugins/plugin_misc_text_syntaxes.py Mon May 29 16:08:09 2023 +0200 +++ b/sat/plugins/plugin_misc_text_syntaxes.py Mon May 29 17:52:25 2023 +0200 @@ -217,7 +217,7 @@ # XXX: we disable raw HTML parsing by default, to avoid parsing error # when the user is not aware of markdown and HTML class EscapeHTML(Extension): - def extend_markdown(self, md): + def extendMarkdown(self, md): md.preprocessors.deregister('html_block') md.inlinePatterns.deregister('html')