diff --git a/aqt/editor.py b/aqt/editor.py index ebd3d18b5..46aef01f9 100644 --- a/aqt/editor.py +++ b/aqt/editor.py @@ -834,7 +834,7 @@ class EditorWebView(AnkiWebView): html, internal = self._processHtml(mime) if html: return html, internal - for fn in (self._processUrls, self._processImage, self._processText): + for fn in (self._processImage, self._processUrls, self._processText): html = fn(mime) if html: return html, False