summaryrefslogtreecommitdiff
path: root/pygments/formatter.py
diff options
context:
space:
mode:
Diffstat (limited to 'pygments/formatter.py')
-rw-r--r--pygments/formatter.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/pygments/formatter.py b/pygments/formatter.py
index d84e76e6..60848b52 100644
--- a/pygments/formatter.py
+++ b/pygments/formatter.py
@@ -48,6 +48,15 @@ class Formatter(object):
Overrides ``encoding`` if given.
"""
+ #: Name of the formatter
+ name = None
+
+ #: Shortcuts for the formatter
+ aliases = []
+
+ #: fn match rules
+ filenames = []
+
#: If True, this formatter outputs Unicode strings when no encoding
#: option is given.
unicodeoutput = True