From a903bca96fcfbabc55089a7e80a7da887c931bdb Mon Sep 17 00:00:00 2001 From: Bryan Brattlof Date: Fri, 25 Dec 2020 19:33:18 -0500 Subject: change syntax highlighting to 'algol_nu' --- filters/syntax-highlighting.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/filters/syntax-highlighting.py b/filters/syntax-highlighting.py index e912594..0396332 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 sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding='utf-8', errors='replace') data = sys.stdin.read() filename = sys.argv[1] -formatter = HtmlFormatter(style='pastie', nobackground=True) +formatter = HtmlFormatter(style='algol_nu', nobackground=True) try: lexer = guess_lexer_for_filename(filename, data) -- cgit 22.23.6