]> git.cameronkatri.com Git - cgit.git/blobdiff - filters/syntax-highlighting.py
git: update to v2.32.0
[cgit.git] / filters / syntax-highlighting.py
index 5888b507863f020dddf7f5f7606c6bfcb304869e..e912594c48a71fce1baffb11149ab9b72cc223d4 100755 (executable)
@@ -34,7 +34,7 @@ sys.stdin = io.TextIOWrapper(sys.stdin.buffer, encoding='utf-8', errors='replace
 sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding='utf-8', errors='replace')
 data = sys.stdin.read()
 filename = sys.argv[1]
-formatter = HtmlFormatter(style='pastie')
+formatter = HtmlFormatter(style='pastie', nobackground=True)
 
 try:
        lexer = guess_lexer_for_filename(filename, data)