I'm trying to syntax highlight Python 3 code with the pygments
pygmentize
command line program, but it just ignores all the style options. I have tried the following:
pygmentize -S colorful -l python3 e:\work\Python\repl.py
pygmentize -O style=colorful -l python3 e:\work\Python\repl.py
It either gives back the help text or the default styling. This is on Windows 10. Anybody know what I'm doing wrong?
It also returns the help when trying to write out an html file using:
pygmentize -f html -S colorful -l python3 -o a.html e:\work\Python\repl.py