diff options
author | gbrandl <devnull@localhost> | 2007-06-13 15:09:21 +0200 |
---|---|---|
committer | gbrandl <devnull@localhost> | 2007-06-13 15:09:21 +0200 |
commit | 33f8bc0fbecb0edf2952cc82c50f09e44e17c14c (patch) | |
tree | 5cb0fd7e1ec28f748a3987613aa53973583f8b47 | |
parent | c0fab929c01decaabaea33a36978f21e33a22674 (diff) | |
download | pygments-33f8bc0fbecb0edf2952cc82c50f09e44e17c14c.tar.gz |
[svn] XML lexer for XSLT too.
-rw-r--r-- | pygments/lexers/web.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/web.py b/pygments/lexers/web.py index 5385c725..acacefec 100644 --- a/pygments/lexers/web.py +++ b/pygments/lexers/web.py @@ -207,7 +207,7 @@ class HtmlLexer(RegexLexer): name = 'HTML' aliases = ['html'] - filenames = ['*.html', '*.htm', '*.xhtml'] + filenames = ['*.html', '*.htm', '*.xhtml', '*.xslt'] mimetypes = ['text/html', 'application/xhtml+xml'] flags = re.IGNORECASE | re.DOTALL |