<https://github.com/pygments/pygments/pulls>.
+Version 2.8.1
+-------------
+(released March 7, 2021)
+
+- Fix issue with LaTeX formatter and ``minted`` (#1734, #1735, #1736, #1737)
+
Version 2.8.0
-------------
(released February 14, 2021)
Metadata-Version: 1.2
Name: Pygments
-Version: 2.8.0
+Version: 2.8.1
Summary: Pygments is a syntax highlighting package written in Python.
Home-page: https://pygments.org/
Author: Georg Brandl
Metadata-Version: 1.2
Name: Pygments
-Version: 2.8.0
+Version: 2.8.1
Summary: Pygments is a syntax highlighting package written in Python.
Home-page: https://pygments.org/
Author: Georg Brandl
import sys
from io import StringIO, BytesIO
-__version__ = '2.8.0'
+__version__ = '2.8.1'
__docformat__ = 'restructuredtext'
__all__ = ['lex', 'format', 'highlight']
cmndef += (r'\def\$$@tc##1{\textcolor[rgb]{%s}{##1}}' %
rgbcolor(ndef['color']))
if ndef['border']:
- cmndef += (r'\def\$$@bc##1{{\setlength{\fboxsep}{-\fboxrule}'
+ cmndef += (r'\def\$$@bc##1{{\setlength{\fboxsep}{\string -\fboxrule}'
r'\fcolorbox[rgb]{%s}{%s}{\strut ##1}}}' %
(rgbcolor(ndef['border']),
rgbcolor(ndef['bgcolor'])))