<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE language SYSTEM "language.dtd"
[
	<!-- names must start with a letter, ideogram or underscore. \w matches any
		 word character *or* a number, hence the lookahead -->
	<!ENTITY name    "(?![0-9])[\w_:][\w.:_-]*">
	<!ENTITY entref  "&amp;(?:#[0-9]+|#[xX][0-9A-Fa-f]+|&name;);">
]>
<language name="XML" version="18" kateversion="5.0" section="Markup" extensions="*.docbook;*.xml;*.rc;*.daml;*.rdf;*.rss;*.xspf;*.xsd;*.svg;*.ui;*.kcfg;*.qrc;*.wsdl;*.scxml;*.xbel;*.dae;*.sch;*.brd" mimetype="text/xml;text/book;text/daml;text/rdf;application/rss+xml;application/xspf+xml;image/svg+xml;application/x-designer;application/x-xbel;application/xml;application/scxml+xml;application/vnd.oasis.opendocument.text-flat-xml;application/vnd.oasis.opendocument.graphics-flat-xml;application/vnd.oasis.opendocument.presentation-flat-xml;application/vnd.oasis.opendocument.spreadsheet-flat-xml;application/gpx+xml" casesensitive="1" indenter="xml" author="Wilbert Berendsen (wilbert@kde.nl)" license="LGPL">

<highlighting>
<contexts>
  <context name="Start" attribute="Normal Text" lineEndContext="#stay">
    <IncludeRules context="FindXML" />
  </context>

  <context name="FindXML" attribute="Normal Text" lineEndContext="#stay">
    <DetectSpaces />
    <DetectIdentifier />
    <RegExpr attribute="Element Symbols" context="ElementTagName" String="&lt;(?=(&name;))" beginRegion="element" />
    <StringDetect attribute="Comment" context="Comment" String="&lt;!--" beginRegion="comment" />
    <StringDetect attribute="CDATA" context="CDATAStart" String="&lt;![CDATA[" lookAhead="true" />
    <RegExpr attribute="Doctype Symbols" context="DoctypeTagName" String="&lt;!(?=DOCTYPE(\s|$))" beginRegion="doctype" />
    <IncludeRules context="FindProcessingInstruction" />
    <IncludeRules context="FindEntityRefs" />
  </context>

  <context name="FindEntityRefs" attribute="Other Text" lineEndContext="#stay">
    <RegExpr attribute="EntityRef" context="#stay" String="&entref;" />
    <AnyChar attribute="Error" context="#stay" String="&amp;&lt;" />
  </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="&amp;%&lt;" />
  </context>


  <context name="Comment" attribute="Comment" lineEndContext="#stay">
    <DetectSpaces />
    <StringDetect attribute="Comment" context="#pop" String="--&gt;" endRegion="comment" />
    <RegExpr attribute="Error" context="#stay" String="-(?:\-(?!-&gt;))+" />
    <IncludeRules context="##Comments" />
    <DetectIdentifier />
  </context>

  <context name="CDATAStart" attribute="Other Text" lineEndContext="#pop">
    <StringDetect attribute="CDATA Symbols" context="#stay" String="&lt;![" beginRegion="cdata" />
    <StringDetect attribute="CDATA" context="#stay" String="CDATA" />
    <DetectChar attribute="CDATA Symbols" context="#pop!CDATA" char="[" />
  </context>
  <context name="CDATA" attribute="Other Text" lineEndContext="#stay">
    <DetectSpaces />
    <DetectIdentifier />
    <StringDetect attribute="CDATA Symbols" context="#pop" String="]]&gt;" endRegion="cdata" />
    <StringDetect attribute="EntityRef" context="#stay" String="]]&amp;gt;" />
  </context>

  <context name="FindProcessingInstruction" attribute="Other Text" lineEndContext="#stay">
    <RegExpr attribute="PI Symbols" context="PI TagName" String="&lt;\?(?=([\w:_-]*))" beginRegion="pi" />
  </context>
  <context name="PI TagName" attribute="Other Text" lineEndContext="#pop!PI" fallthrough="true" fallthroughContext="#pop!PI">
    <RegExpr attribute="Processing Instruction" context="#pop!PI-XML" String="xml(?=\s|$)" insensitive="true" />
    <StringDetect attribute="Processing Instruction" context="#pop!PI" String="%1" dynamic="true" />
  </context>
  <context name="PI" attribute="Other Text" lineEndContext="#stay">
    <Detect2Chars attribute="PI Symbols" context="#pop" char="?" char1="&gt;" endRegion="pi" />
  </context>
  <context name="PI-XML" attribute="Other Text" lineEndContext="#stay">
    <IncludeRules context="PI" />
    <RegExpr attribute="Attribute" context="#stay" String="(?:^|\s+)&name;" />
    <DetectChar attribute="Attribute Separator" context="Value" char="=" />
  </context>

  <context name="DoctypeTagName" attribute="Other Text" lineEndContext="#pop">
    <StringDetect attribute="Doctype" context="#pop!DoctypeVariableName" String="DOCTYPE" />
  </context>
  <context name="DoctypeVariableName" attribute="Other Text" lineEndContext="#stay" fallthrough="true" fallthroughContext="#pop!Doctype">
    <DetectSpaces />
    <RegExpr attribute="Doctype Name" context="#pop!Doctype" String="&name;" />
  </context>
  <context name="Doctype" attribute="Other Text" lineEndContext="#stay">
    <DetectChar attribute="Doctype Symbols" context="#pop" char="&gt;" endRegion="doctype" />
    <DetectChar attribute="Doctype Symbols" context="Doctype Internal Subset" char="[" beginRegion="int_subset" />
  </context>

  <context name="Doctype Internal Subset" attribute="Other Text" lineEndContext="#stay">
    <DetectSpaces />
    <DetectChar attribute="Doctype Symbols" context="#pop" char="]" endRegion="int_subset" />
    <RegExpr attribute="Doctype Symbols" context="Doctype Markupdecl TagName" String="&lt;!(?=(ELEMENT|ENTITY|ATTLIST|NOTATION)\b)" />
    <StringDetect attribute="Comment" context="Comment" String="&lt;!--" beginRegion="comment" />
    <IncludeRules context="FindProcessingInstruction" />
    <IncludeRules context="FindPEntityRefs" />
  </context>

  <context name="Doctype Markupdecl TagName" attribute="Other Text" lineEndContext="#pop">
    <DetectIdentifier attribute="Doctype" context="#pop!Doctype Markupdecl VariableName" />
  </context>
  <context name="Doctype Markupdecl VariableName" attribute="Other Text" lineEndContext="#pop!Doctype Markupdecl" fallthrough="true" fallthroughContext="#pop!Doctype Markupdecl">
    <DetectSpaces />
    <RegExpr attribute="Doctype Name" context="#pop!Doctype Markupdecl" String="&name;" />
  </context>
  <context name="Doctype Markupdecl" attribute="Other Text" lineEndContext="#stay">
    <DetectChar attribute="Doctype Symbols" context="#pop" char="&gt;" />
    <DetectChar attribute="Value" context="Doctype Markupdecl DQ" char="&quot;" />
    <DetectChar attribute="Value" context="Doctype Markupdecl SQ" char="&apos;" />
  </context>

  <context name="Doctype Markupdecl DQ" attribute="Value" lineEndContext="#stay">
    <DetectChar attribute="Value" context="#pop" char="&quot;" />
    <IncludeRules context="FindPEntityRefs" />
  </context>

  <context name="Doctype Markupdecl SQ" attribute="Value" lineEndContext="#stay">
    <DetectChar attribute="Value" context="#pop" char="&apos;" />
    <IncludeRules context="FindPEntityRefs" />
  </context>

  <context name="ElementTagName" attribute="Other Text" lineEndContext="#pop!Element">
    <StringDetect attribute="Element" context="#pop!Element" String="%1" dynamic="true" />
  </context>
  <context name="Element" attribute="Other Text" lineEndContext="#stay">
    <Detect2Chars attribute="Element Symbols" context="#pop" char="/" char1="&gt;" endRegion="element" />
    <DetectChar attribute="Element Symbols" context="El Content" char="&gt;" />
    <RegExpr attribute="Attribute" context="Attribute" String="(?:^|\s+)&name;" />
    <RegExpr attribute="Error" context="#stay" String="\S" />
  </context>

  <context name="El Content" attribute="Other Text" lineEndContext="#stay">
    <RegExpr attribute="Element Symbols" context="El End TagName" String="&lt;/(?=(&name;))" />
    <IncludeRules context="FindXML" />
  </context>

  <context name="El End TagName" attribute="Other Text" lineEndContext="#pop!El End">
    <StringDetect attribute="Element" context="#pop!El End" String="%1" dynamic="true" />
  </context>
  <context name="El End" attribute="Other Text" lineEndContext="#stay">
    <DetectChar attribute="Element Symbols" context="#pop#pop#pop" char="&gt;" endRegion="element" />
    <RegExpr attribute="Error" context="#stay" String="\S" />
  </context>

  <context name="Attribute" attribute="Other Text" lineEndContext="#stay">
    <DetectChar attribute="Attribute Separator" context="#pop!Value" char="=" />
    <RegExpr attribute="Error" context="#stay" String="\S" />
  </context>

  <context name="Value" attribute="Other Text" lineEndContext="#stay">
    <DetectChar attribute="Value" context="Value DQ" char="&quot;" />
    <DetectChar attribute="Value" context="Value SQ" char="&apos;" />
    <RegExpr attribute="Error" context="#stay" String="\S" />
  </context>

  <context name="Value DQ" attribute="Value" lineEndContext="#stay">
    <DetectChar attribute="Value" context="#pop#pop" char="&quot;" />
    <IncludeRules context="FindEntityRefs" />
  </context>

  <context name="Value SQ" attribute="Value" lineEndContext="#stay">
    <DetectChar attribute="Value" context="#pop#pop" char="&apos;" />
    <IncludeRules context="FindEntityRefs" />
  </context>

</contexts>
<itemDatas>
  <itemData name="Normal Text"     defStyleNum="dsNormal" />
  <itemData name="Other Text"      defStyleNum="dsNormal" />
  <itemData name="Comment"         defStyleNum="dsComment" spellChecking="true" />
  <itemData name="CDATA"           defStyleNum="dsBaseN"    bold="1" italic="0" spellChecking="false" />
  <itemData name="CDATA Symbols"   defStyleNum="dsBaseN"    bold="0" italic="0" spellChecking="false" />
  <itemData name="Processing Instruction" defStyleNum="dsFunction" bold="1" italic="0" spellChecking="false" />
  <itemData name="PI Symbols"      defStyleNum="dsFunction" bold="0" italic="0" spellChecking="false" />
  <itemData name="Doctype"         defStyleNum="dsDataType" bold="1" italic="0" spellChecking="false" />
  <itemData name="Doctype Name"    defStyleNum="dsDataType" bold="0" italic="0" spellChecking="false" />
  <itemData name="Doctype Symbols" defStyleNum="dsDataType" bold="0" italic="0" spellChecking="false" />
  <itemData name="Element"         defStyleNum="dsKeyword" spellChecking="false" />
  <itemData name="Element Symbols" defStyleNum="dsNormal" spellChecking="false" />
  <itemData name="Attribute"       defStyleNum="dsOthers" spellChecking="false" />
  <itemData name="Attribute Separator" 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="&lt;!--" end="--&gt;" region="comment" />
  </comments>
</general>
</language>
<!-- kate: replace-tabs on; tab-width 2; indent-width 2; -->
