summaryrefslogtreecommitdiff
path: root/pygments/lexers/dotnet.py
diff options
context:
space:
mode:
authorgbrandl <devnull@localhost>2007-01-13 16:47:36 +0100
committergbrandl <devnull@localhost>2007-01-13 16:47:36 +0100
commitb298006c5d2582f465bae13d7c754c7f0ec4d7a2 (patch)
tree4c5e9ac3121f78dcc69a575a04bd815cad7eeee4 /pygments/lexers/dotnet.py
parent5682e2a118b27ed8e0fa4e6e4f7f0d6fcac93cbe (diff)
downloadpygments-b298006c5d2582f465bae13d7c754c7f0ec4d7a2.tar.gz
[svn] Added JSP and Batchfile lexers by Tim Hatch.
Diffstat (limited to 'pygments/lexers/dotnet.py')
-rw-r--r--pygments/lexers/dotnet.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/pygments/lexers/dotnet.py b/pygments/lexers/dotnet.py
index f47532ba..63ae8e6a 100644
--- a/pygments/lexers/dotnet.py
+++ b/pygments/lexers/dotnet.py
@@ -22,7 +22,7 @@ class CSharpLexer(RegexLexer):
For `C# <http://msdn2.microsoft.com/en-us/vcsharp/default.aspx>`_
source code.
"""
-
+
name = 'C#'
aliases = ['csharp', 'c#']
filenames = ['*.cs']
@@ -83,7 +83,7 @@ class BooLexer(RegexLexer):
"""
For `Boo <http://boo.codehaus.org/>`_ source code.
"""
-
+
name = 'Boo'
aliases = ['boo']
filenames = ['*.boo']
@@ -152,7 +152,7 @@ class VbNetLexer(RegexLexer):
`Visual Basic.NET <http://msdn2.microsoft.com/en-us/vbasic/default.aspx>`_
source code.
"""
-
+
name = 'VB.net'
aliases = ['vb.net', 'vbnet']
filenames = ['*.vb', '*.bas']