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