summaryrefslogtreecommitdiff
path: root/pygments/styles/trac.py
diff options
context:
space:
mode:
authorgbrandl <devnull@localhost>2007-05-03 18:23:03 +0200
committergbrandl <devnull@localhost>2007-05-03 18:23:03 +0200
commite130dbff2eb591c7cdca4a0bef90b63502cd3d4e (patch)
treefcb7f3140464f1be96ff5a119c154b3ace677df4 /pygments/styles/trac.py
parent2af8e713b4d89c8961c419db4818f11d43030643 (diff)
downloadpygments-e130dbff2eb591c7cdca4a0bef90b63502cd3d4e.tar.gz
[svn] Add whitespace filter. Add a few more filter unit tests.
Diffstat (limited to 'pygments/styles/trac.py')
-rw-r--r--pygments/styles/trac.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/pygments/styles/trac.py b/pygments/styles/trac.py
index 0e32986f..d6bd4cf1 100644
--- a/pygments/styles/trac.py
+++ b/pygments/styles/trac.py
@@ -11,7 +11,7 @@
from pygments.style import Style
from pygments.token import Keyword, Name, Comment, String, Error, \
- Number, Operator, Generic
+ Number, Operator, Generic, Whitespace
class TracStyle(Style):
@@ -22,6 +22,7 @@ class TracStyle(Style):
default_style = ''
styles = {
+ Whitespace: '#bbbbbb',
Comment: 'italic #999988',
Comment.Preproc: 'bold noitalic #999999',
Comment.Special: 'bold #999999',