diff options
author | Yigit Sever | 2021-10-29 08:07:01 +0000 |
---|---|---|
committer | Yigit Sever | 2021-10-29 11:15:11 +0300 |
commit | ecd1260017d23128f7b37289be901e0fbb888992 (patch) | |
tree | 77c2bbdc33512bd558cc79c8b668869972e3914b /filters | |
parent | b00972235a9e2250610bb6f861a6e88d30d5a126 (diff) | |
download | cgit-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-x | filters/syntax-highlighting.py | 2 |
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 | |||
34 | sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding='utf-8', errors='replace') | 34 | sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding='utf-8', errors='replace') |
35 | data = sys.stdin.read() | 35 | data = sys.stdin.read() |
36 | filename = sys.argv[1] | 36 | filename = sys.argv[1] |
37 | formatter = HtmlFormatter(style='stata-light', nobackground=True) | 37 | formatter = HtmlFormatter(style='igor') |
38 | 38 | ||
39 | try: | 39 | try: |
40 | lexer = guess_lexer_for_filename(filename, data) | 40 | lexer = guess_lexer_for_filename(filename, data) |