blob: bd0c922aca68b4428b65fd6d8dbe37ae7a998b62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?xml version="1.0"?>
<!-- converted to AvalonEdit format by Siegfried Pammer in 2010 -->
<SyntaxDefinition name="ASP/XHTML" extensions=".asp;.aspx;.asax;.asmx;.ascx;.master" xmlns="http://icsharpcode.net/sharpdevelop/syntaxdefinition/2008">
<Color name="ASPSectionStartEndTags" foreground="Black" background="Yellow" exampleText="<% System.Console.WriteLine("Hello World!"); %>" />
<Color name="ASPSection" foreground="Black" background="#FFF7F2E3" exampleText="<% System.Console.WriteLine("Hello World!"); %>" />
<RuleSet ignoreCase="true">
<Span ruleSet="ASP" multiline="true">
<Begin color="ASPSectionStartEndTags"><%</Begin>
<End color="ASPSectionStartEndTags">%></End>
</Span>
<Import ruleSet="HTML/" />
</RuleSet>
<RuleSet name="ASP">
<Import ruleSet="C#/" />
</RuleSet>
</SyntaxDefinition>
|