Free cookie consent management tool by TermsFeed Policy Generator

source: branches/CodeEditor/HeuristicLab.ExtLibs/HeuristicLab.AvalonEdit/5.0.1/AvalonEdit-5.0.1/Highlighting/Resources/XmlDoc.xshd @ 11700

Last change on this file since 11700 was 11700, checked in by jkarder, 9 years ago

#2077: created branch and added first version

File size: 1.8 KB
Line 
1<?xml version="1.0"?>
2<SyntaxDefinition name="XmlDoc" xmlns="http://icsharpcode.net/sharpdevelop/syntaxdefinition/2008">
3  <Color name="XmlString" foreground="Silver" fontWeight="bold" exampleText="${DocCommentMarker} &lt;exception cref=&quot;System.Exception&quot; /&gt;" />
4  <Color name="DocComment" foreground="Gray" exampleText="${DocCommentMarker} &lt;exception cref=&quot;System.Exception&quot; /&gt;" />
5  <Color name="XmlPunctuation" fontWeight="bold" exampleText="${DocCommentMarker} &lt;exception cref=&quot;System.Exception&quot; /&gt;" />
6  <Color name="KnownDocTags" fontWeight="bold" exampleText="${DocCommentMarker} &lt;exception cref=&quot;System.Exception&quot; /&gt;" />
7 
8  <RuleSet name="DocCommentSet">
9    <Span color="DocComment">
10      <Begin>&lt;</Begin>
11      <End>&gt;</End>
12      <RuleSet>
13        <Span color="XmlString">
14          <Begin>"</Begin>
15          <End>"</End>
16        </Span>
17        <Keywords color="XmlPunctuation">
18          <Word>/</Word>
19          <Word>|</Word>
20          <Word>=</Word>
21        </Keywords>
22        <Keywords color="KnownDocTags">
23          <Word>c</Word>
24          <Word>code</Word>
25          <Word>example</Word>
26          <Word>exception</Word>
27          <Word>list</Word>
28          <Word>para</Word>
29          <Word>param</Word>
30          <Word>paramref</Word>
31          <Word>permission</Word>
32          <Word>remarks</Word>
33          <Word>returns</Word>
34          <Word>see</Word>
35          <Word>seealso</Word>
36          <Word>summary</Word>
37          <Word>value</Word>
38         
39          <Word>type</Word>
40          <Word>name</Word>
41          <Word>cref</Word>
42          <Word>item</Word>
43          <Word>term</Word>
44          <Word>description</Word>
45          <Word>listheader</Word>
46          <Word>typeparam</Word>
47          <Word>typeparamref</Word>
48        </Keywords>
49      </RuleSet>
50    </Span>
51  </RuleSet>
52 
53  <!-- root ruleset = DocCommentSet -->
54  <RuleSet>
55    <Import ruleSet="DocCommentSet" />
56  </RuleSet>
57</SyntaxDefinition>
Note: See TracBrowser for help on using the repository browser.