python-latex-highlighting
python-latex-highlighting copied to clipboard
non-ascii characters in the whole document are affected by this package
Hi!
I really like this package! Unfortunately I am German and need umlauts from time to time and pythonhighlight kills umlauts (and possibly other non-ascii characters) in the whole document.
Here is an example:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{pythonhighlight}
\begin{document}
Umlaut: ö Ö
\end{document}
Result:
If you leave out the fontenc package, umlauts are (in my pdfviewer at least) just skipped:
\documentclass{article}
\usepackage{pythonhighlight}
\begin{document}
Umlaut: ö Ö
\end{document}
Result:
Would be cool if you can help!