aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/3rdparty/syntax-highlighting/data/syntax/markdown.xml
blob: f88848729fbebb23abfa74963f67d050d594f8e2 (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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
<?xml version="1.0" encoding="UTF-8"?>
<!--
    Kate syntax highlight filter for Markdown/MultiMarkdown documents.

    Copyright 2008 Darrin Yeager. http://www.dyeager.org/
    Dual-Licensed under both GPL and BSD licenses.

    Extended 2009 Claes Holmerson. http://github.com/claes/kate-markdown/
-->
<!--
    The [^\s]{1} is in the regex to avoid interfering with bullet list which
    starts "* item". Thus emphasis/strong MUST be formed like *words here*
    with the asterisks next to the beginning of the first word.

    Match space or newline, followed by "*", followed by one non-space,
    followed by anything non-asterisk, followed by "*", followed by
    space, end-of-sentence punctuation, or the end of the line.
-->
<!DOCTYPE language SYSTEM "language.dtd"
[
<!ENTITY strongemphasisregex "(\s|^)[\*_]{3}[^\*_]+[\*_]{3}(\s|\.|,|;|:|\-|\?|$)">
<!ENTITY strongregex "(\s|^)[\*_]{2}[^\s]{1}[^\*_]+[\*_]{2}(\s|\.|,|;|:|\-|\?|$)">
<!ENTITY emphasisregex "(\s|^)[\*_]{1}[^\s]{1}[^\*_]+[\*_]{1}(\s|\.|,|;|:|\-|\?|$)">
<!ENTITY reflinkregex '\[[^\]\^]+\]\s*\[[^\]]*\]\s*(\s+\"[^\"]*\"){0,1}'>
<!ENTITY reflinktargetregex '\[[^\]\^]+\]\:\s+[^\s]+(\s+\"[^\"]*\"){0,1}'>
<!ENTITY footnoteregex "\[\^[^\]]+\]">
<!ENTITY inlinelinkregex "\[[^\]\^]+\]\s*\([^\(]*\)">
<!ENTITY inlineimageregex "\!\[[^\]\^]+\]\([^\(]*\)">
<!ENTITY refimageregex "\!\[[^\]\^]+\]\[[^\[]*\]">
<!ENTITY autolinkregex '&lt;(https?|ftp):[^\"&gt;\s]+&gt;'>
<!ENTITY mailtolinkregex "&lt;(?:mailto:)?([-.\w]+\@[-a-z0-9]+(\.[-a-z0-9]+)*\.[a-z]+)&gt;">
<!ENTITY rulerregex "\s*([\*\-_]\s?){3,}\s*">
<!-- two spaces at end of line generates linebreak -->
<!ENTITY linebreakregex "  $">
<!ENTITY strikeoutregex "[~]{2}[^~].*[^~][~]{2}">
<!-- pandoc style -->
]>
<language name="Markdown" version="6" kateversion="5.0" section="Markup" extensions="*.md;*.mmd;*.markdown" priority="15" author="Darrin Yeager, Claes Holmerson" license="GPL,BSD">
  <highlighting>
    <contexts>
      <context attribute="Normal Text" lineEndContext="#stay" name="Normal Text">
        <DetectChar context="blockquote" char="&gt;" column="0"/>
        <RegExpr attribute="h1" String="^#\s.*[#]?$"/>
        <RegExpr attribute="h2" String="^##\s.*[#]?$"/>
        <RegExpr attribute="h3" String="^###\s.*[#]?$"/>
        <RegExpr attribute="h4" String="^####\s.*[#]?$"/>
        <RegExpr attribute="h5" String="^#####\s.*[#]?$"/>
        <RegExpr attribute="h6" String="^######\s.*[#]?$"/>
        <RegExpr attribute="ruler" String="&rulerregex;"/>
        <RegExpr attribute="strong" String="&strongregex;"/>
        <RegExpr attribute="emphasis" String="&emphasisregex;"/>
        <RegExpr attribute="strongemphasis" String="&strongemphasisregex;"/>
        <RegExpr attribute="code" String="^([\s]{4,}|\t+).*$"/>
        <RegExpr context="bullet" String="^[\*\+\-]\s"/>
        <RegExpr context="numlist" String="^[\d]+\.\s"/>
        <RegExpr attribute="meta" String="^(Title|Author|Date|Copyright|Revision|CSS|LaTeX\ XSLT|Categories|Tags|BaseName|Excerpt):(.*)+$"/>
        <IncludeRules context="inc"/>
      </context>
      <context attribute="blockquote" lineEndContext="#stay" lineEmptyContext="#pop" name="blockquote">
        <RegExpr attribute="bq-strong" String="&strongregex;"/>
        <RegExpr attribute="bq-emphasis" String="&emphasisregex;"/>
        <IncludeRules context="inc"/>
      </context>
      <context attribute="bullet" lineEndContext="#stay" lineEmptyContext="#pop" name="bullet">
        <RegExpr attribute="bl-strong" String="&strongregex;"/>
        <RegExpr attribute="bl-emphasis" String="&emphasisregex;"/>
        <IncludeRules context="inc"/>
      </context>
      <context attribute="numlist" lineEndContext="#stay" lineEmptyContext="#pop" name="numlist">
        <RegExpr attribute="nl-strong" String="&strongregex;"/>
        <RegExpr attribute="nl-emphasis" String="&emphasisregex;"/>
        <IncludeRules context="inc"/>
      </context>
      <context attribute="comment" lineEndContext="#stay" name="comment">
        <RegExpr String="--&gt;" attribute="comment" context="#pop" endRegion="comment"/>
      </context>
      <context attribute="code" lineEndContext="#stay" name="bash-code">
        <WordDetect attribute="code" context="#pop" String="```"/>
        <IncludeRules context="##Bash" includeAttrib="true"/>
      </context>
      <context attribute="code" lineEndContext="#stay" name="cmake-code">
        <WordDetect attribute="code" context="#pop" String="```"/>
        <IncludeRules context="##CMake" includeAttrib="true"/>
      </context>
      <context attribute="code" lineEndContext="#stay" name="cpp-code">
        <WordDetect attribute="code" context="#pop" String="```"/>
        <IncludeRules context="##C++" includeAttrib="true"/>
      </context>
      <context attribute="code" lineEndContext="#stay" name="css-code">
        <WordDetect attribute="code" context="#pop" String="```"/>
        <IncludeRules context="##CSS" includeAttrib="true"/>
      </context>
      <context attribute="code" lineEndContext="#stay" name="email-code">
        <WordDetect attribute="code" context="#pop" String="```"/>
        <IncludeRules context="##Email" includeAttrib="true"/>
      </context>
      <context attribute="code" lineEndContext="#stay" name="haskell-code">
        <WordDetect attribute="code" context="#pop" String="```"/>
        <IncludeRules context="##Haskell" includeAttrib="true"/>
      </context>
      <context attribute="code" lineEndContext="#stay" name="html-code">
        <WordDetect attribute="code" context="#pop" String="```"/>
        <IncludeRules context="##HTML" includeAttrib="true"/>
      </context>
      <context attribute="code" lineEndContext="#stay" name="json-code">
        <WordDetect attribute="code" context="#pop" String="```"/>
        <IncludeRules context="##JSON" includeAttrib="true"/>
      </context>
      <context attribute="code" lineEndContext="#stay" name="php-code">
        <WordDetect attribute="code" context="#pop" String="```"/>
        <IncludeRules context="phpsource##PHP/PHP" includeAttrib="true"/>
      </context>
      <context attribute="code" lineEndContext="#stay" name="python-code">
        <WordDetect attribute="code" context="#pop" String="```"/>
        <IncludeRules context="##Python" includeAttrib="true"/>
      </context>
      <context attribute="code" lineEndContext="#stay" name="qml-code">
        <WordDetect attribute="code" context="#pop" String="```"/>
        <IncludeRules context="##QML" includeAttrib="true"/>
      </context>
      <context attribute="code" lineEndContext="#stay" name="rust-code">
        <WordDetect attribute="code" context="#pop" String="```"/>
        <IncludeRules context="##Rust" includeAttrib="true"/>
      </context>
      <context attribute="code" lineEndContext="#stay" name="xml-code">
        <WordDetect attribute="code" context="#pop" String="```"/>
        <IncludeRules context="##XML" includeAttrib="true"/>
      </context>
      <context attribute="code" lineEndContext="#stay" name="code">
        <WordDetect attribute="code" context="#pop" String="```"/>
      </context>
      <context attribute="common" name="inc" lineEndContext="#stay">
        <RegExpr attribute="code" String="`[^`]+`"/>
        <RegExpr context="comment" String="&lt;!--" beginRegion="comment"/>
        <RegExpr attribute="reflink" String="&reflinkregex;"/>
        <RegExpr attribute="footnote" String="&footnoteregex;"/>
        <RegExpr attribute="inlinelink" String="&inlinelinkregex;"/>
        <RegExpr attribute="reflinktarget" String="&reflinktargetregex;"/>
        <RegExpr attribute="inlineimage" String="&inlineimageregex;"/>
        <RegExpr attribute="refimage" String="&refimageregex;"/>
        <RegExpr attribute="autolink" String="&autolinkregex;"/>
        <RegExpr attribute="mailtolink" String="&mailtolinkregex;"/>
        <RegExpr attribute="strikeout" minimal="true" String="&strikeoutregex;"/>
        <RegExpr attribute="linebreak" minimal="true" String="&linebreakregex;"/>
        <WordDetect attribute="code" context="bash-code" String="```bash"/>
        <WordDetect attribute="code" context="cmake-code" String="```cmake"/>
        <WordDetect attribute="code" context="cpp-code" String="```cpp"/>
        <WordDetect attribute="code" context="css-code" String="```css"/>
        <WordDetect attribute="code" context="email-code" String="```email"/>
        <WordDetect attribute="code" context="haskell-code" String="```haskell"/>
        <WordDetect attribute="code" context="html-code" String="```html"/>
        <WordDetect attribute="code" context="json-code" String="```json"/>
        <WordDetect attribute="code" context="php-code" String="```php"/>
        <WordDetect attribute="code" context="python-code" String="```python"/>
        <WordDetect attribute="code" context="qml-code" String="```qml"/>
        <WordDetect attribute="code" context="rust-code" String="```rust"/>
        <WordDetect attribute="code" context="xml-code" String="```xml"/>
        <StringDetect attribute="code" context="code" String="```"/>
      </context>
    </contexts>
    <itemDatas>
      <itemData name="Normal Text" defStyleNum="dsNormal"/>
      <itemData name="common" defStyleNum="dsNormal"/>
      <itemData name="strongemphasis" defStyleNum="dsNormal" italic="true" bold="true"/>
      <itemData name="emphasis" defStyleNum="dsNormal" italic="true"/>
      <itemData name="strong" defStyleNum="dsNormal" bold="true"/>
      <itemData name="ruler" defStyleNum="dsNormal" bold="true"/>
      <itemData name="strikeout" defStyleNum="dsNormal" strikeOut="true"/>
      <itemData name="linebreak" defStyleNum="dsNormal" underline="true" color="#999999"/>
      <itemData name="h1" defStyleNum="dsFunction" bold="true"/>
      <itemData name="h2" defStyleNum="dsFunction" bold="true"/>
      <itemData name="h3" defStyleNum="dsFunction" bold="true"/>
      <itemData name="h4" defStyleNum="dsFunction" bold="true"/>
      <itemData name="h5" defStyleNum="dsFunction" bold="true"/>
      <itemData name="h6" defStyleNum="dsFunction" bold="true"/>
      <itemData name="blockquote" defStyleNum="dsDataType"/>
      <itemData name="bq-emphasis" defStyleNum="dsDataType" italic="true"/>
      <itemData name="bq-strong" defStyleNum="dsDataType" bold="true"/>
      <itemData name="bullet" defStyleNum="dsString"/>
      <itemData name="bl-emphasis" defStyleNum="dsString" italic="true"/>
      <itemData name="bl-strong" defStyleNum="dsString" bold="true"/>
      <itemData name="numlist" defStyleNum="dsString"/>
      <itemData name="nl-emphasis" defStyleNum="dsString" italic="true"/>
      <itemData name="nl-strong" defStyleNum="dsString" bold="true"/>
      <itemData name="comment" defStyleNum="dsComment"/>
      <itemData name="code" defStyleNum="dsBaseN"/>
      <itemData name="reflink" defStyleNum="dsOthers" underline="true"/>
      <itemData name="inlinelink" defStyleNum="dsOthers" underline="true"/>
      <itemData name="autolink" defStyleNum="dsOthers" underline="true"/>
      <itemData name="mailtolink" defStyleNum="dsOthers" underline="true"/>
      <itemData name="footnote" defStyleNum="dsOthers" italic="true"/>
      <itemData name="meta" defStyleNum="dsComment"/>
      <itemData name="reflinktarget" defStyleNum="dsOthers" italic="false" bold="false"/>
      <itemData name="inlineimage" defStyleNum="dsAlert" italic="false" bold="false"/>
      <itemData name="refimage" defStyleNum="dsAlert" italic="false" bold="false"/>
    </itemDatas>
  </highlighting>
  <general>
    <comments>
      <comment name="multiLine" start="&lt;!--" end="--&gt;" region="comment"/>
    </comments>
  </general>
</language>