diff options
Diffstat (limited to 'pygments/formatters/latex.py')
-rw-r--r-- | pygments/formatters/latex.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pygments/formatters/latex.py b/pygments/formatters/latex.py index 22256625..a1e35c75 100644 --- a/pygments/formatters/latex.py +++ b/pygments/formatters/latex.py @@ -90,6 +90,9 @@ class LatexFormatter(Formatter): using this prefix and some letters (default: ``'C'``). *New in Pygments 0.7.* """ + name = 'LaTeX' + aliases = ['latex', 'tex'] + filenames = ['*.tex'] def __init__(self, **options): Formatter.__init__(self, **options) |