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 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE language [
<!ENTITY name "[A-Za-z_:][\w.:_-]*">
<!ENTITY attributeName "[\@A-Za-z_:*#\(\[][\)\]\w.:_-]*">
<!ENTITY entref "&(?:#[0-9]+|#[xX][0-9A-Fa-f]+|&name;);">
]>
<language name="Vue" version="19" kateversion="5.79" section="Markup" extensions="*.vue" mimetype="text/html" author="James Zuccon" license="LGPL" priority="10">
<!--
This is a modified version of the HTML Syntax Highlighter to accommodate Vue JS template files (with some non-relevant parts removed).
While we could take the approach of just including rules from the HTML files, this introduces some problems:
1. Vue supports the <template> tag recursively - to support this, we would need to duplicate much of the HTML syntax file anyway.
2. Vue has some additional attributeName patterns that are not supported by HTML (e.g. '@' prefix as shorthand for events).
3. If we wanted to support Vue Attribute Bindings in future (e.g. :some-binded-param), we would have to duplicate much of the HTML syntax file again.
4. If we wanted to support Vue JS Brackets in future (e.g. {{ echoSomeContent }}, we would also have to duplicate much of the HTML syntax file again.
If Syntax Highlighting supports over-riding third-party contexts at some point in future, it might be worth re-thinking how this file is constructed.
But, for now, it's probably saner to use HTML as the base template.
NOTE: We do not necessarily want to just integrate support for these features directly into the HTML syntax highlighter, as we want Vue to have its own mimetype.
One of the major reasons for this is so that we can identify Vue files for use with an LSP (e.g. Volar) in Kate.
-->
<highlighting>
<contexts>
<context name="Start" attribute="Normal Text" lineEndContext="#stay">
<IncludeRules context="FindHTML"/>
</context>
<context name="FindHTML" attribute="Normal Text" lineEndContext="#stay">
<DetectSpaces/>
<DetectIdentifier/>
<StringDetect attribute="Comment" context="Comment" String="<!--" beginRegion="comment"/>
<IncludeRules context="FindElements"/>
<IncludeRules context="FindEntityRefs"/>
</context>
<context name="FindElements" attribute="Other Text" lineEndContext="#pop">
<RegExpr attribute="Element Symbols" context="ElementTagName" String="<(?=(&name;))"/>
<RegExpr attribute="Element Symbols" context="ElementTagNameClose" String="</(?=(&name;))"/>
</context>
<context name="ElementTagName" attribute="Other Text" lineEndContext="#pop">
<IncludeRules context="FindHTMLTags"/>
<IncludeRules context="FindSpecialHTMLTags"/>
<StringDetect attribute="Element" context="#pop!El Open" String="%1" dynamic="true"/>
</context>
<context name="ElementTagNameClose" attribute="Other Text" lineEndContext="#pop">
<IncludeRules context="FindHTMLTagsClose"/>
<StringDetect attribute="Element" context="#pop!El Close" String="%1" dynamic="true"/>
</context>
<!-- This allows you to insert HTML tags in other syntax definitions -->
<context name="FindSpecialHTMLTags" attribute="Normal Text" lineEndContext="#stay">
<WordDetect attribute="Element" context="#pop!CSS" String="style" insensitive="true" beginRegion="style"/>
<WordDetect attribute="Element" context="#pop!JS" String="script" insensitive="true" beginRegion="script"/>
</context>
<context name="FindHTMLTags" attribute="Normal Text" lineEndContext="#stay">
<WordDetect attribute="Element" context="#pop!El Open" String="pre" insensitive="true" beginRegion="pre"/>
<WordDetect attribute="Element" context="#pop!El Open" String="div" insensitive="true" beginRegion="div"/>
<WordDetect attribute="Element" context="#pop!El Open" String="table" insensitive="true" beginRegion="table"/>
<WordDetect attribute="Element" context="#pop!El Open" String="ul" insensitive="true" beginRegion="ul"/>
<WordDetect attribute="Element" context="#pop!El Open" String="ol" insensitive="true" beginRegion="ol"/>
<WordDetect attribute="Element" context="#pop!El Open" String="dl" insensitive="true" beginRegion="dl"/>
<WordDetect attribute="Element" context="#pop!El Open" String="article" insensitive="true" beginRegion="article"/>
<WordDetect attribute="Element" context="#pop!El Open" String="aside" insensitive="true" beginRegion="aside"/>
<WordDetect attribute="Element" context="#pop!El Open" String="details" insensitive="true" beginRegion="details"/>
<WordDetect attribute="Element" context="#pop!El Open" String="figure" insensitive="true" beginRegion="figure"/>
<WordDetect attribute="Element" context="#pop!El Open" String="footer" insensitive="true" beginRegion="footer"/>
<WordDetect attribute="Element" context="#pop!El Open" String="header" insensitive="true" beginRegion="header"/>
<WordDetect attribute="Element" context="#pop!El Open" String="main" insensitive="true" beginRegion="main"/>
<WordDetect attribute="Element" context="#pop!El Open" String="nav" insensitive="true" beginRegion="nav"/>
<WordDetect attribute="Element" context="#pop!El Open" String="section" insensitive="true" beginRegion="section"/>
</context>
<context name="FindHTMLTagsClose" attribute="Normal Text" lineEndContext="#stay">
<WordDetect attribute="Element" context="#pop!El Close" String="pre" insensitive="true" endRegion="pre"/>
<WordDetect attribute="Element" context="#pop!El Close" String="div" insensitive="true" endRegion="div"/>
<WordDetect attribute="Element" context="#pop!El Close" String="table" insensitive="true" endRegion="table"/>
<WordDetect attribute="Element" context="#pop!El Close" String="ul" insensitive="true" endRegion="ul"/>
<WordDetect attribute="Element" context="#pop!El Close" String="ol" insensitive="true" endRegion="ol"/>
<WordDetect attribute="Element" context="#pop!El Close" String="dl" insensitive="true" endRegion="dl"/>
<WordDetect attribute="Element" context="#pop!El Close" String="article" insensitive="true" endRegion="article"/>
<WordDetect attribute="Element" context="#pop!El Close" String="aside" insensitive="true" endRegion="aside"/>
<WordDetect attribute="Element" context="#pop!El Close" String="details" insensitive="true" endRegion="details"/>
<WordDetect attribute="Element" context="#pop!El Close" String="figure" insensitive="true" endRegion="figure"/>
<WordDetect attribute="Element" context="#pop!El Close" String="footer" insensitive="true" endRegion="footer"/>
<WordDetect attribute="Element" context="#pop!El Close" String="header" insensitive="true" endRegion="header"/>
<WordDetect attribute="Element" context="#pop!El Close" String="main" insensitive="true" endRegion="main"/>
<WordDetect attribute="Element" context="#pop!El Close" String="nav" insensitive="true" endRegion="nav"/>
<WordDetect attribute="Element" context="#pop!El Close" String="section" insensitive="true" endRegion="section"/>
</context>
<context name="FindEntityRefs" attribute="Other Text" lineEndContext="#stay">
<RegExpr attribute="EntityRef" context="#stay" String="&entref;"/>
<AnyChar attribute="Error" context="#stay" String="&<"/>
</context>
<context name="FindAttributes" attribute="Other Text" lineEndContext="#stay">
<DetectChar attribute="Attribute Separator" context="Value" char="="/>
<RegExpr attribute="Attribute" context="#stay" String="(^|\s+)&attributeName;(\s+&attributeName;)*\s*|\s+"/>
</context>
<context name="Comment" attribute="Comment" lineEndContext="#stay">
<DetectSpaces/>
<StringDetect attribute="Comment" context="#pop" String="-->" endRegion="comment"/>
<IncludeRules context="##Comments"/>
<DetectIdentifier/>
</context>
<context name="El Open" attribute="Error" lineEndContext="#stay">
<Detect2Chars attribute="Element Symbols" context="#pop" char="/" char1=">"/>
<DetectChar attribute="Element Symbols" context="#pop" char=">"/>
<IncludeRules context="FindAttributes"/>
</context>
<context name="El Close" attribute="Error" lineEndContext="#stay">
<DetectChar attribute="Element Symbols" context="#pop" char=">"/>
<DetectSpaces attribute="Other Text"/>
</context>
<context name="CSS" attribute="Error" lineEndContext="#stay">
<RegExpr attribute="Attribute" context="Style-Type" String="(?:\s+|^)lang(?=\=|\s|$)" insensitive="true"/>
<Detect2Chars attribute="Element Symbols" context="#pop" char="/" char1=">" endRegion="style"/>
<DetectChar attribute="Element Symbols" context="CSS content" char=">"/>
<IncludeRules context="FindAttributes"/>
</context>
<context name="DefaultCSS" attribute="Other Text" lineEndContext="#stay">
<Detect2Chars attribute="Element Symbols" context="#pop" char="/" char1=">" endRegion="style"/>
<DetectChar attribute="Attribute Separator" context="Value" char="="/>
<RegExpr attribute="Attribute" context="#stay" String="(^|\s+)&attributeName;|\s+"/>
</context>
<context name="CSS content" attribute="Other Text" lineEndContext="#stay">
<RegExpr attribute="Element Symbols" context="StyleTagClose" String="</(?=style\b)" insensitive="true"/>
<IncludeRules context="##CSS" includeAttrib="true"/>
</context>
<context name="Default CSS content" attribute="Other Text" lineEndContext="#stay">
<IncludeRules context="FindStyleTagClose"/>
</context>
<context name="FindStyleTagClose" attribute="Other Text" lineEndContext="#stay">
<RegExpr attribute="Element Symbols" context="StyleTagClose" String="</(?=style\b)" insensitive="true"/>
</context>
<context name="StyleTagClose" attribute="Other Text" lineEndContext="#stay">
<DetectIdentifier attribute="Element" context="#pop#pop#pop!El Close" endRegion="style"/>
</context>
<context name="JS" attribute="Error" lineEndContext="#stay">
<RegExpr attribute="Attribute" context="Script-Type" String="(?:\s+|^)lang(?=\=|\s|$)" insensitive="true"/>
<DetectChar attribute="Element Symbols" context="JS content" char=">"/>
<IncludeRules context="DefaultJS"/>
</context>
<context name="DefaultJS" attribute="Other Text" lineEndContext="#stay">
<Detect2Chars attribute="Element Symbols" context="#pop" char="/" char1=">" endRegion="script"/>
<DetectChar attribute="Attribute Separator" context="Value" char="="/>
<RegExpr attribute="Attribute" context="#stay" String="(^|\s+)&attributeName;|\s+"/>
</context>
<context name="JS content" attribute="Other Text" lineEndContext="#stay">
<IncludeRules context="Default JS content"/>
<IncludeRules context="Normal##JavaScript" includeAttrib="true"/>
</context>
<context name="Default JS content" attribute="Other Text" lineEndContext="#stay">
<IncludeRules context="FindScriptTagClose"/>
<RegExpr attribute="Comment" context="JS comment close" String="//(?=.*</script\b)" insensitive="true"/>
</context>
<context name="FindScriptTagClose" attribute="Other Text" lineEndContext="#stay">
<RegExpr attribute="Element Symbols" context="ScriptTagClose" String="</(?=script\b)" insensitive="true"/>
</context>
<context name="ScriptTagClose" attribute="Other Text" lineEndContext="#stay">
<DetectIdentifier attribute="Element" context="#pop#pop#pop!El Close" endRegion="script"/>
</context>
<context name="JS comment close" attribute="Comment" lineEndContext="#pop">
<RegExpr attribute="Element Symbols" context="#pop!ScriptTagClose" String="</(?=script\b)" insensitive="true"/>
<DetectSpaces/>
<IncludeRules context="##Comments"/>
</context>
<context name="Value" attribute="Other Text" lineEndContext="#stay" fallthroughContext="Value NQ">
<DetectChar attribute="Value" context="Value DQ" char="""/>
<DetectChar attribute="Value" context="Value SQ" char="'"/>
<DetectSpaces/>
</context>
<context name="Value NQ" attribute="Other Text" lineEndContext="#pop#pop" fallthroughContext="#pop#pop">
<!-- '{' and '}' are valid, but used with twig -->
<RegExpr attribute="Value" String="[^><"'&\s=`{}]+"/>
<IncludeRules context="FindEntityRefs"/>
<AnyChar attribute="Error" String=""'`="/>
<AnyChar attribute="Value" String="{}"/>
</context>
<context name="Value DQ" attribute="Value" lineEndContext="#stay">
<DetectChar attribute="Value" context="#pop#pop" char="""/>
<IncludeRules context="FindEntityRefs"/>
</context>
<context name="Value SQ" attribute="Value" lineEndContext="#stay">
<DetectChar attribute="Value" context="#pop#pop" char="'"/>
<IncludeRules context="FindEntityRefs"/>
</context>
<!-- Read content from the "lang" attribute to change the language to
highlight in the <style> tag. The default language is CSS. -->
<context name="Style-Type" attribute="Other Text" lineEndContext="#stay" fallthroughContext="#pop">
<DetectSpaces/>
<DetectChar attribute="Attribute" context="#pop!Style-Type Value" char="="/>
</context>
<context name="Style-Type Value" attribute="Other Text" lineEndContext="#stay" fallthroughContext="#pop!Value">
<DetectSpaces/>
<!-- SASS -->
<StringDetect attribute="Value" context="#pop#pop!SASS" String=""sass""/>
<StringDetect attribute="Value" context="#pop#pop!SASS" String="'sass'"/>
<!-- SCSS -->
<StringDetect attribute="Value" context="#pop#pop!SCSS" String=""scss""/>
<StringDetect attribute="Value" context="#pop#pop!SCSS" String="'scss'"/>
</context>
<context name="SASS" attribute="Error" lineEndContext="#stay">
<DetectChar attribute="Element Symbols" context="SASS content" char=">"/>
<IncludeRules context="DefaultCSS"/>
</context>
<context name="SASS content" attribute="Other Text" lineEndContext="#stay">
<IncludeRules context="Default CSS content"/>
<IncludeRules context="##SASS" includeAttrib="true"/>
</context>
<context name="SCSS" attribute="Error" lineEndContext="#stay">
<DetectChar attribute="Element Symbols" context="SCSS content" char=">"/>
<IncludeRules context="DefaultCSS"/>
</context>
<context name="SCSS content" attribute="Other Text" lineEndContext="#stay">
<IncludeRules context="Default CSS content"/>
<IncludeRules context="##SCSS" includeAttrib="true"/>
</context>
<!-- Read content from the "lang" attribute to change the language to
highlight in the <script> tag. The default language is JavaScript. -->
<context name="Script-Type" attribute="Other Text" lineEndContext="#stay" fallthroughContext="#pop">
<DetectSpaces/>
<DetectChar attribute="Attribute" context="#pop!Script-Type Value" char="="/>
</context>
<context name="Script-Type Value" attribute="Other Text" lineEndContext="#stay" fallthroughContext="#pop!Value">
<DetectSpaces/>
<!-- TypeScript -->
<StringDetect attribute="Value" context="#pop#pop!TypeScript" String=""ts""/>
<StringDetect attribute="Value" context="#pop#pop!TypeScript" String="'ts'"/>
</context>
<context name="TypeScript" attribute="Error" lineEndContext="#stay">
<DetectChar attribute="Element Symbols" context="TypeScript content" char=">"/>
<IncludeRules context="DefaultJS"/>
</context>
<context name="TypeScript content" attribute="Other Text" lineEndContext="#stay">
<IncludeRules context="Default JS content"/>
<IncludeRules context="Normal##TypeScript" includeAttrib="true"/>
</context>
</contexts>
<itemDatas>
<itemData name="Normal Text" defStyleNum="dsNormal"/>
<itemData name="Other Text" defStyleNum="dsNormal" spellChecking="false"/>
<itemData name="Comment" defStyleNum="dsComment"/>
<itemData name="Element" defStyleNum="dsKeyword" spellChecking="false"/>
<itemData name="Element Symbols" defStyleNum="dsDataType" spellChecking="false"/>
<itemData name="Attribute" defStyleNum="dsOthers" spellChecking="false"/>
<itemData name="Attribute Separator" defStyleNum="dsOperator" spellChecking="false"/>
<itemData name="Value" defStyleNum="dsString" spellChecking="false"/>
<itemData name="EntityRef" defStyleNum="dsDecVal" spellChecking="false"/>
<itemData name="Error" defStyleNum="dsError" spellChecking="false"/>
</itemDatas>
</highlighting>
<general>
<comments>
<comment name="multiLine" start="<!--" end="-->" region="comment"/>
</comments>
</general>
</language>
<!-- kate: replace-tabs on; tab-width 2; indent-width 2; -->
|