summaryrefslogtreecommitdiff
path: root/pygments/lexers/web.py
diff options
context:
space:
mode:
Diffstat (limited to 'pygments/lexers/web.py')
-rw-r--r--pygments/lexers/web.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/pygments/lexers/web.py b/pygments/lexers/web.py
index 3dfb2de5..5c8c1bf5 100644
--- a/pygments/lexers/web.py
+++ b/pygments/lexers/web.py
@@ -5,9 +5,8 @@
Lexers for web-related languages and markup.
- :copyright: 2006-2008 by Georg Brandl, Armin Ronacher,
- Tim Hatch <tim@timhatch.com>, Stou Sandalski.
- :license: BSD, see LICENSE for more details.
+ :copyright: Copyright 2006-2009 by the Pygments team, see AUTHORS.
+ :license: BSD, see LICENSE for details.
"""
import re
@@ -225,6 +224,7 @@ class ActionScript3Lexer(RegexLexer):
if re.match(r'\w+\s*:\s*\w', text): return 0.3
return 0.1
+
class CssLexer(RegexLexer):
"""
For CSS (Cascading Style Sheets).