123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE language SYSTEM "language.dtd"
- [
- <!ENTITY name "[A-Za-z_:][\w.:_-]*">
- <!ENTITY attributeName "[A-Za-z_:*#\(\[][\)\]\w.:_-]*">
- <!ENTITY entref "&(?:#[0-9]+|#[xX][0-9A-Fa-f]+|&name;);">
- ]>
- <language name="HTML" version="15" kateversion="5.53" section="Markup" extensions="*.htm;*.html;*.shtml;*.shtm;*.aspx" mimetype="text/html" author="Wilbert Berendsen (wilbert@kde.nl)" license="LGPL" priority="10">
- <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" />
- <StringDetect attribute="CDATA" context="CDATA" String="<![CDATA[" beginRegion="cdata" />
- <RegExpr attribute="Doctype" context="Doctype" String="<!DOCTYPE\s+" insensitive="true" beginRegion="doctype" />
- <RegExpr attribute="Processing Instruction" context="PI" String="<\?[\w:-]*" beginRegion="pi" />
- <IncludeRules context="FindSpecialHTMLTags" />
- <IncludeRules context="FindHTMLTags" />
- <!-- as long as kde gives DTDs the text/html mimetype--><IncludeRules context="FindDTDRules" />
- <IncludeRules context="FindEntityRefs" />
- </context>
- <!-- This allows you to insert HTML tags in other syntax definitions -->
- <context name="FindSpecialHTMLTags" attribute="Normal Text" lineEndContext="#stay">
- <RegExpr attribute="Element" context="CSS" String="<style\b" insensitive="true" beginRegion="style" />
- <RegExpr attribute="Element" context="JS" String="<script\b" insensitive="true" beginRegion="script" />
- </context>
- <context name="FindHTMLTags" attribute="Normal Text" lineEndContext="#stay">
- <WordDetect attribute="Element" context="El Open" String="<pre" insensitive="true" beginRegion="pre" />
- <WordDetect attribute="Element" context="El Open" String="<div" insensitive="true" beginRegion="div" />
- <WordDetect attribute="Element" context="El Open" String="<table" insensitive="true" beginRegion="table" />
- <WordDetect attribute="Element" context="El Open" String="<ul" insensitive="true" beginRegion="ul" />
- <WordDetect attribute="Element" context="El Open" String="<ol" insensitive="true" beginRegion="ol" />
- <WordDetect attribute="Element" context="El Open" String="<dl" insensitive="true" beginRegion="dl" />
- <WordDetect attribute="Element" context="El Open" String="<article" insensitive="true" beginRegion="article" />
- <WordDetect attribute="Element" context="El Open" String="<aside" insensitive="true" beginRegion="aside" />
- <WordDetect attribute="Element" context="El Open" String="<details" insensitive="true" beginRegion="details" />
- <WordDetect attribute="Element" context="El Open" String="<figure" insensitive="true" beginRegion="figure" />
- <WordDetect attribute="Element" context="El Open" String="<footer" insensitive="true" beginRegion="footer" />
- <WordDetect attribute="Element" context="El Open" String="<header" insensitive="true" beginRegion="header" />
- <WordDetect attribute="Element" context="El Open" String="<main" insensitive="true" beginRegion="main" />
- <WordDetect attribute="Element" context="El Open" String="<nav" insensitive="true" beginRegion="nav" />
- <WordDetect attribute="Element" context="El Open" String="<section" insensitive="true" beginRegion="section" />
- <RegExpr attribute="Element" context="El Open" String="<&name;" />
- <WordDetect attribute="Element" context="El Close" String="</pre" insensitive="true" endRegion="pre" />
- <WordDetect attribute="Element" context="El Close" String="</div" insensitive="true" endRegion="div" />
- <WordDetect attribute="Element" context="El Close" String="</table" insensitive="true" endRegion="table" />
- <WordDetect attribute="Element" context="El Close" String="</ul" insensitive="true" endRegion="ul" />
- <WordDetect attribute="Element" context="El Close" String="</ol" insensitive="true" endRegion="ol" />
- <WordDetect attribute="Element" context="El Close" String="</dl" insensitive="true" endRegion="dl" />
- <WordDetect attribute="Element" context="El Close" String="</article" insensitive="true" endRegion="article" />
- <WordDetect attribute="Element" context="El Close" String="</aside" insensitive="true" endRegion="aside" />
- <WordDetect attribute="Element" context="El Close" String="</details" insensitive="true" endRegion="details" />
- <WordDetect attribute="Element" context="El Close" String="</figure" insensitive="true" endRegion="figure" />
- <WordDetect attribute="Element" context="El Close" String="</footer" insensitive="true" endRegion="footer" />
- <WordDetect attribute="Element" context="El Close" String="</header" insensitive="true" endRegion="header" />
- <WordDetect attribute="Element" context="El Close" String="</main" insensitive="true" endRegion="main" />
- <WordDetect attribute="Element" context="El Close" String="</nav" insensitive="true" endRegion="nav" />
- <WordDetect attribute="Element" context="El Close" String="</section" insensitive="true" endRegion="section" />
- <RegExpr attribute="Element" context="El Close" String="</&name;" />
- </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="FindPEntityRefs" attribute="Other Text" lineEndContext="#stay">
- <RegExpr attribute="EntityRef" context="#stay" String="&entref;" />
- <RegExpr attribute="PEntityRef" context="#stay" String="%&name;;" />
- <AnyChar attribute="Error" context="#stay" String="&%" />
- </context>
- <context name="FindAttributes" attribute="Other Text" lineEndContext="#stay">
- <RegExpr attribute="Attribute" context="#stay" String="^&attributeName;|\s+&attributeName;" />
- <DetectChar attribute="Attribute" context="Value" char="=" />
- </context>
- <context name="FindDTDRules" attribute="Other Text" lineEndContext="#stay">
- <RegExpr attribute="Doctype" context="Doctype Markupdecl" String="<!(?:ELEMENT|ENTITY|ATTLIST|NOTATION)\b" />
- </context>
- <context name="Comment" attribute="Comment" lineEndContext="#stay">
- <DetectSpaces/>
- <StringDetect attribute="Comment" context="#pop" String="-->" endRegion="comment" />
- <IncludeRules context="##Comments" />
- <DetectIdentifier/>
- <RegExpr attribute="Error" context="#stay" String="-(?:-(?!->))+" />
- </context>
- <context name="CDATA" attribute="Other Text" lineEndContext="#stay">
- <DetectSpaces/>
- <DetectIdentifier/>
- <StringDetect attribute="CDATA" context="#pop" String="]]>" endRegion="cdata" />
- <StringDetect attribute="EntityRef" context="#stay" String="]]&gt;" />
- </context>
- <context name="PI" attribute="Other Text" lineEndContext="#stay">
- <Detect2Chars attribute="Processing Instruction" context="#pop" char="?" char1=">" endRegion="pi" />
- </context>
- <context name="Doctype" attribute="Other Text" lineEndContext="#stay">
- <DetectChar attribute="Doctype" context="#pop" char=">" endRegion="doctype" />
- <DetectChar attribute="Doctype" context="Doctype Internal Subset" char="[" beginRegion="int_subset" />
- </context>
- <context name="Doctype Internal Subset" attribute="Other Text" lineEndContext="#stay">
- <DetectChar attribute="Doctype" context="#pop" char="]" endRegion="int_subset" />
- <IncludeRules context="FindDTDRules" />
- <StringDetect attribute="Comment" context="Comment" String="<!--" beginRegion="comment" />
- <RegExpr attribute="Processing Instruction" context="PI" String="<\?[\w:-]*" beginRegion="pi" />
- <IncludeRules context="FindPEntityRefs" />
- </context>
- <context name="Doctype Markupdecl" attribute="Other Text" lineEndContext="#stay">
- <DetectChar attribute="Doctype" context="#pop" char=">" />
- <DetectChar attribute="Value" context="Doctype Markupdecl DQ" char=""" />
- <DetectChar attribute="Value" context="Doctype Markupdecl SQ" char="'" />
- </context>
- <context name="Doctype Markupdecl DQ" attribute="Value" lineEndContext="#stay">
- <DetectChar attribute="Value" context="#pop" char=""" />
- <IncludeRules context="FindPEntityRefs" />
- </context>
- <context name="Doctype Markupdecl SQ" attribute="Value" lineEndContext="#stay">
- <DetectChar attribute="Value" context="#pop" char="'" />
- <IncludeRules context="FindPEntityRefs" />
- </context>
- <context name="El Open" attribute="Other Text" lineEndContext="#stay">
- <Detect2Chars attribute="Element" context="#pop" char="/" char1=">" />
- <DetectChar attribute="Element" context="#pop" char=">" />
- <IncludeRules context="FindAttributes" />
- <RegExpr attribute="Error" context="#stay" String="\S" />
- </context>
- <context name="El Close" attribute="Other Text" lineEndContext="#stay">
- <DetectChar attribute="Element" context="#pop" char=">" />
- <RegExpr attribute="Error" context="#stay" String="\S" />
- </context>
- <context name="El Close 2" attribute="Other Text" lineEndContext="#stay">
- <DetectChar attribute="Element" context="#pop#pop#pop" char=">" />
- <RegExpr attribute="Error" context="#stay" String="\S" />
- </context>
- <context name="El Close 3" attribute="Other Text" lineEndContext="#stay">
- <DetectChar attribute="Element" context="#pop#pop#pop#pop" char=">" />
- <RegExpr attribute="Error" context="#stay" String="\S" />
- </context>
- <context name="CSS" attribute="Other Text" lineEndContext="#stay">
- <Detect2Chars attribute="Element" context="#pop" char="/" char1=">" endRegion="style" />
- <DetectChar attribute="Element" context="CSS content" char=">" />
- <IncludeRules context="FindAttributes" />
- <RegExpr attribute="Error" context="#stay" String="\S" />
- </context>
- <context name="CSS content" attribute="Other Text" lineEndContext="#stay">
- <RegExpr attribute="Element" context="El Close 2" String="</style\b" insensitive="true" endRegion="style" />
- <IncludeRules context="##CSS" includeAttrib="true"/>
- </context>
- <context name="JS" attribute="Other Text" lineEndContext="#stay">
- <RegExpr attribute="Attribute" context="Script-Type" String="(?:\s+|^)type(?=\=|\s|$)" insensitive="true"/>
- <DetectChar attribute="Element" context="JS content" char=">" />
- <IncludeRules context="DefaultJS" />
- </context>
- <context name="DefaultJS" attribute="Other Text" lineEndContext="#stay">
- <Detect2Chars attribute="Element" context="#pop" char="/" char1=">" endRegion="script" />
- <IncludeRules context="FindAttributes" />
- <RegExpr attribute="Error" context="#stay" String="\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">
- <RegExpr attribute="Element" context="El Close 2" String="</script\b" insensitive="true" endRegion="script" />
- <RegExpr attribute="Comment" context="JS comment close" String="//(?=.*</script\b)" insensitive="true" />
- </context>
- <context name="JS comment close" attribute="Comment" lineEndContext="#pop">
- <RegExpr attribute="Element" context="El Close 3" String="</script\b" insensitive="true" endRegion="script" />
- <DetectSpaces />
- <IncludeRules context="##Comments" />
- </context>
- <context name="Value" attribute="Other Text" lineEndContext="#stay" fallthrough="true" 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" fallthrough="true" fallthroughContext="#pop#pop">
- <IncludeRules context="FindEntityRefs" />
- <RegExpr attribute="Value" context="#stay" String="/(?!>)|[^/><"'\s]" />
- </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 "type" 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" fallthrough="true" fallthroughContext="#pop">
- <DetectSpaces />
- <DetectChar attribute="Attribute" context="#pop!Script-Type Value" char="=" />
- </context>
- <context name="Script-Type Value" attribute="Other Text" lineEndContext="#stay" fallthrough="true" fallthroughContext="#pop!Value">
- <DetectSpaces />
- <!-- TypeScript -->
- <StringDetect attribute="Value" context="#pop#pop!TypeScript" String=""text/typescript""/>
- <StringDetect attribute="Value" context="#pop#pop!TypeScript" String="'text/typescript'"/>
- <!-- JSX (JavaScript React) -->
- <StringDetect attribute="Value" context="#pop#pop!JSX" String=""text/jsx""/>
- <StringDetect attribute="Value" context="#pop#pop!JSX" String="'text/jsx'"/>
- <StringDetect attribute="Value" context="#pop#pop!JSX" String=""text/babel""/>
- <StringDetect attribute="Value" context="#pop#pop!JSX" String="'text/babel'"/>
- <!-- MustacheJS / HandlebarsJS / RactiveJS -->
- <StringDetect attribute="Value" context="#pop#pop!MustacheJS" String=""x-tmpl-mustache""/>
- <StringDetect attribute="Value" context="#pop#pop!MustacheJS" String="'x-tmpl-mustache'"/>
- <StringDetect attribute="Value" context="#pop#pop!MustacheJS" String=""text/mustache""/>
- <StringDetect attribute="Value" context="#pop#pop!MustacheJS" String="'text/mustache'"/>
- <StringDetect attribute="Value" context="#pop#pop!MustacheJS" String=""text/x-mustache-template""/>
- <StringDetect attribute="Value" context="#pop#pop!MustacheJS" String="'text/x-mustache-template'"/>
- <StringDetect attribute="Value" context="#pop#pop!MustacheJS" String=""text/x-handlebars-template""/>
- <StringDetect attribute="Value" context="#pop#pop!MustacheJS" String="'text/x-handlebars-template'"/>
- <StringDetect attribute="Value" context="#pop#pop!MustacheJS" String=""text/ractive""/>
- <StringDetect attribute="Value" context="#pop#pop!MustacheJS" String="'text/ractive'"/>
- <!-- HTML templates -->
- <StringDetect attribute="Value" context="#pop#pop!Script HTML template" String=""text/html""/>
- <StringDetect attribute="Value" context="#pop#pop!Script HTML template" String="'text/html'"/>
- </context>
- <context name="JSX" attribute="Other Text" lineEndContext="#stay">
- <DetectChar attribute="Element" context="JSX content" char=">" />
- <IncludeRules context="DefaultJS" />
- </context>
- <context name="JSX content" attribute="Other Text" lineEndContext="#stay">
- <IncludeRules context="Default JS content"/>
- <IncludeRules context="Normal##JavaScript React (JSX)" includeAttrib="true"/>
- </context>
- <context name="TypeScript" attribute="Other Text" lineEndContext="#stay">
- <DetectChar attribute="Element" 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>
- <context name="MustacheJS" attribute="Other Text" lineEndContext="#stay">
- <DetectChar attribute="Element" context="MustacheJS content" char=">" />
- <IncludeRules context="DefaultJS" />
- </context>
- <context name="MustacheJS content" attribute="Other Text" lineEndContext="#stay">
- <RegExpr attribute="Element" context="El Close 2" String="</script\b" insensitive="true" endRegion="script" />
- <StringDetect attribute="Error" context="#stay" String="<script>" insensitive="true" />
- <RegExpr attribute="Error" context="#stay" String="<script\b" insensitive="true" />
- <IncludeRules context="Base##Mustache/Handlebars (HTML)" includeAttrib="true"/>
- </context>
- <context name="Script HTML template" attribute="Other Text" lineEndContext="#stay">
- <DetectChar attribute="Element" context="Script HTML template content" char=">" />
- <IncludeRules context="DefaultJS" />
- </context>
- <context name="Script HTML template content" attribute="Other Text" lineEndContext="#stay">
- <RegExpr attribute="Element" context="El Close 2" String="</script\b" insensitive="true" endRegion="script" />
- <StringDetect attribute="Error" context="#stay" String="<script>" insensitive="true" />
- <RegExpr attribute="Error" context="#stay" String="<script\b" insensitive="true" />
- <IncludeRules context="FindHTML" />
- </context>
- </contexts>
- <itemDatas>
- <itemData name="Normal Text" defStyleNum="dsNormal" />
- <itemData name="Other Text" defStyleNum="dsNormal" spellChecking="false" />
- <itemData name="Comment" defStyleNum="dsComment" />
- <itemData name="CDATA" defStyleNum="dsBaseN" bold="1" spellChecking="false" />
- <itemData name="Processing Instruction" defStyleNum="dsKeyword" spellChecking="false" />
- <itemData name="Doctype" defStyleNum="dsDataType" bold="1" spellChecking="false" />
- <itemData name="Element" defStyleNum="dsKeyword" spellChecking="false" />
- <itemData name="Attribute" defStyleNum="dsOthers" spellChecking="false" />
- <itemData name="Value" defStyleNum="dsString" spellChecking="false" />
- <itemData name="EntityRef" defStyleNum="dsDecVal" spellChecking="false" />
- <itemData name="PEntityRef" 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; -->
|