|
@@ -12,6 +12,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
+
|
|
|
|
|
|
import sys
|
|
|
import re
|
|
@@ -38,9 +39,6 @@ class QFormatter(Formatter):
|
|
|
self.style = get_style_by_name(style)
|
|
|
|
|
|
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
|
|
|
|
|
|
|
|
@@ -71,8 +69,6 @@ class QFormatter(Formatter):
|
|
|
|
|
|
|
|
|
|
|
|
- print(tokensource)
|
|
|
-
|
|
|
for ttype, value in tokensource:
|
|
|
l=len(value)
|
|
|
t=str(ttype)
|
|
@@ -83,12 +79,14 @@ class Highlighter(QSyntaxHighlighter):
|
|
|
|
|
|
def __init__(self, parent, mode):
|
|
|
QSyntaxHighlighter.__init__(self, parent)
|
|
|
-
|
|
|
+
|
|
|
+ styles = list(get_all_styles())
|
|
|
+ print(styles)
|
|
|
|
|
|
|
|
|
|
|
|
if not mode == "md":
|
|
|
- self.formatter=QFormatter(linenos=True, style="monokai-hcb")
|
|
|
+ self.formatter=QFormatter(linenos=True, style="monokai")
|
|
|
else:
|
|
|
self.formatter=QFormatter(linenos=False, style="github")
|
|
|
|
|
@@ -123,7 +121,3 @@ class Highlighter(QSyntaxHighlighter):
|
|
|
self.setFormat(i,1,self.formatter.data[p+i])
|
|
|
except IndexError:
|
|
|
pass
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|