Source code for pyexlatex.models.format.code.python

from pyexlatex.models.format.code.minted import Minted


[docs]class Python(Minted): """ Renders passed contents as Python code, with syntax highlighting. """
[docs] def __init__(self, contents): super().__init__(contents, 'python')