diff options
| author | gbrandl <devnull@localhost> | 2007-05-03 18:23:03 +0200 |
|---|---|---|
| committer | gbrandl <devnull@localhost> | 2007-05-03 18:23:03 +0200 |
| commit | e130dbff2eb591c7cdca4a0bef90b63502cd3d4e (patch) | |
| tree | fcb7f3140464f1be96ff5a119c154b3ace677df4 /pygments/styles/native.py | |
| parent | 2af8e713b4d89c8961c419db4818f11d43030643 (diff) | |
| download | pygments-e130dbff2eb591c7cdca4a0bef90b63502cd3d4e.tar.gz | |
[svn] Add whitespace filter. Add a few more filter unit tests.
Diffstat (limited to 'pygments/styles/native.py')
| -rw-r--r-- | pygments/styles/native.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pygments/styles/native.py b/pygments/styles/native.py index c9b290b0..76021a53 100644 --- a/pygments/styles/native.py +++ b/pygments/styles/native.py @@ -11,7 +11,7 @@ from pygments.style import Style from pygments.token import Keyword, Name, Comment, String, Error, \ - Number, Operator, Generic, Token + Number, Operator, Generic, Token, Whitespace class NativeStyle(Style): @@ -23,6 +23,7 @@ class NativeStyle(Style): styles = { Token: '#d0d0d0', + Whitespace: '#666666', Comment: 'italic #999999', Comment.Preproc: 'noitalic bold #cd2828', |
