reorder highlighting

This commit is contained in:
un-pogaz 2023-04-30 09:56:00 +02:00
parent 2f8a32cb56
commit 5c5f08d709

View File

@ -129,16 +129,16 @@ class MarkdownHighlighter(QSyntaxHighlighter):
self.highlightList(text, cursor, bf, strt)
self.highlightEmphasis(text, cursor, bf, strt)
self.highlightBold(text, cursor, bf, strt)
self.highlightLink(text, cursor, bf, strt)
self.highlightImage(text, cursor, bf, strt)
self.highlightCodeSpan(text, cursor, bf, strt)
self.highlightEmphasis(text, cursor, bf, strt)
self.highlightBold(text, cursor, bf, strt)
self.highlightCodeBlock(text, cursor, bf, strt)
def highlightBlockQuote(self, text, cursor, bf, strt):