aboutsummaryrefslogtreecommitdiffstats
path: root/filters
diff options
context:
space:
mode:
authorYigit Sever2021-10-29 08:07:01 +0000
committerYigit Sever2021-10-29 11:15:11 +0300
commitecd1260017d23128f7b37289be901e0fbb888992 (patch)
tree77c2bbdc33512bd558cc79c8b668869972e3914b /filters
parentb00972235a9e2250610bb6f861a6e88d30d5a126 (diff)
downloadcgit-ecd1260017d23128f7b37289be901e0fbb888992.tar.gz
cgit-ecd1260017d23128f7b37289be901e0fbb888992.tar.bz2
cgit-ecd1260017d23128f7b37289be901e0fbb888992.zip
Lowercase everything, Rosé Pine, click to copy
And probably other little things I forgot about
Diffstat (limited to 'filters')
-rwxr-xr-xfilters/syntax-highlighting.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/filters/syntax-highlighting.py b/filters/syntax-highlighting.py
index b877644..078dca5 100755
--- a/filters/syntax-highlighting.py
+++ b/filters/syntax-highlighting.py
@@ -34,7 +34,7 @@ sys.stdin = io.TextIOWrapper(sys.stdin.buffer, encoding='utf-8', errors='replace
34sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding='utf-8', errors='replace') 34sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding='utf-8', errors='replace')
35data = sys.stdin.read() 35data = sys.stdin.read()
36filename = sys.argv[1] 36filename = sys.argv[1]
37formatter = HtmlFormatter(style='stata-light', nobackground=True) 37formatter = HtmlFormatter(style='igor')
38 38
39try: 39try:
40 lexer = guess_lexer_for_filename(filename, data) 40 lexer = guess_lexer_for_filename(filename, data)