mirror of
https://git.zx2c4.com/cgit
synced 2024-11-22 08:28:42 +00:00
syntax-highlighting: always use utf-8 to avoid ascii codec issues
This commit is contained in:
parent
33bc949a1e
commit
d3756bd7b0
@ -21,6 +21,7 @@
|
||||
|
||||
|
||||
import sys
|
||||
import io
|
||||
from pygments import highlight
|
||||
from pygments.util import ClassNotFound
|
||||
from pygments.lexers import TextLexer
|
||||
@ -29,6 +30,8 @@ from pygments.lexers import guess_lexer_for_filename
|
||||
from pygments.formatters import HtmlFormatter
|
||||
|
||||
|
||||
sys.stdin = io.TextIOWrapper(sys.stdin.buffer, encoding='utf-8')
|
||||
sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding='utf-8')
|
||||
data = sys.stdin.read()
|
||||
filename = sys.argv[1]
|
||||
formatter = HtmlFormatter(style='pastie')
|
||||
|
Loading…
Reference in New Issue
Block a user