<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE language SYSTEM "language.dtd"
[
	<!ENTITY name    "[A-Za-z_:][\w.:_-]*">
	<!ENTITY entref  "&amp;(#[0-9]+|#[xX][0-9A-Fa-f]+|&name;);">
	<!ENTITY heading  "^---+">
	<!ENTITY listbullet "(\*|1\.|a\.)">
]>


<language name="TWiki" version="0.1" kateversion="2.5.2" section="Markup" extensions="*.txt" mimetype="text/html"  author="Kevin Göser (kevin.goeser@uni-ulm.de), based on HTML-highlighting of Wilbert Berendsen (wilbert@kde.nl)" license="LGPL" priority="0">

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

  <context name="FindHTML" attribute="Normal Text" lineEndContext="#stay">
    <RegExpr attribute="Set Variable" context="Set Variable" String="^(   )+\* Set " />
    <RegExpr attribute="Verbatim" context="Eq Verbatim" String="\W=\w"/>
    <RegExpr attribute="Normal Text" context="Und Italic" String=" _\b" />
    <RegExpr attribute="Normal Text" context="Und Italic" String="^_\b" />
    <RegExpr attribute="Normal Text" context="Ast Bold"   String=" \*\b" />
    <RegExpr attribute="Normal Text" context="Ast Bold"   String="^\*\b" />

    <IncludeRules context="FindListItems" />

    <RegExpr attribute="Signature" context="Signature" String="^-- " />

    <DetectSpaces/>
    <DetectIdentifier/>

    <Detect2Chars attribute="Link" context="Link" char="[" char1="[" />
    <RegExpr attribute="Heading" context="Heading" String="&heading;" beginRegion="section" endRegion="section"/>
    <RegExpr attribute="Normal Text" context="Tag Bold" String="&lt;b&gt;" />
    <RegExpr attribute="Verbatim" context="TT Verbatim" String="&lt;tt"/>
    <RegExpr attribute="Verbatim" context="Verbatim Verbatim" String="&lt;verba"/>


    <StringDetect attribute="Comment" context="Comment" String="&lt;!--" beginRegion="comment" />
    <StringDetect attribute="CDATA" context="CDATA" String="&lt;![CDATA[" beginRegion="cdata" />


    <RegExpr attribute="Processing Instruction" context="PI" String="&lt;\?[\w:-]*" beginRegion="pi" />
    <RegExpr attribute="Element" context="CSS" String="&lt;style\b" insensitive="TRUE" beginRegion="style" />
    <RegExpr attribute="Element" context="JS" String="&lt;script\b" insensitive="TRUE" beginRegion="script" />
    <RegExpr attribute="Element" context="El Open" String="&lt;pre\b" insensitive="TRUE" beginRegion="pre" />
    <RegExpr attribute="Element" context="El Open" String="&lt;div\b" insensitive="TRUE" beginRegion="div" />
    <RegExpr attribute="Element" context="El Open" String="&lt;table\b" insensitive="TRUE" beginRegion="table" />
    <RegExpr attribute="Element" context="El Open" String="&lt;&name;" />
    <RegExpr attribute="Element" context="El Close" String="&lt;/pre\b" insensitive="TRUE" endRegion="pre" />
    <RegExpr attribute="Element" context="El Close" String="&lt;/div\b" insensitive="TRUE" endRegion="div" />
    <RegExpr attribute="Element" context="El Close" String="&lt;/table\b" insensitive="TRUE" endRegion="table" />
    <RegExpr attribute="Element" context="El Close" String="&lt;/&name;" />

    <IncludeRules context="FindEntityRefs" />
   </context>


   <context name="Set Variable" attribute="Set Variable" lineEndContext="#pop" />

   <context name="Link" attribute="Link" lineEndContext="#stay">
    <Detect2Chars attribute="Link" context="#pop" char="]" char1="]" />
   </context>

   <context name="Signature" attribute="Signature" lineEndContext="#pop" />

   <context name="Tag Bold" attribute="Bold" lineEndContext="#stay">
    <RegExpr attribute="Bold" context="#pop" String=".(?=&lt;\/b&gt;)" />
   </context>

   <context name="Ast Bold" attribute="Bold" lineEndContext="#stay">
    <RegExpr attribute="Normal Text" context="#pop" String="\b\*\B" />
   </context>

   <context name="Und Italic" attribute="Italic" lineEndContext="#stay">
    <RegExpr attribute="Normal Text" context="#pop" String="\b_\B" />
   </context>

   <context name="FindListItems" attribute="Normal Text" lineEndContext="#stay">
    <RegExpr attribute="List Item Bullet" context="#stay" String="^(   )+&listbullet;" />
    <RegExpr attribute="Error" context="#stay" String="^\s*&listbullet;" />
   </context>

   <context name="Eq Verbatim" attribute="Verbatim" lineEndContext="#stay">
    <RegExpr attribute="Verbatim" context="#pop" String="\S=(,|$|:|\.|\s|\))" />
   </context>

   <context name="TT Verbatim" attribute="Verbatim" lineEndContext="#stay">
    <RegExpr attribute="Verbatim" context="#pop" String="tt&gt;" />
   </context>

   <context name="Verbatim Verbatim" attribute="Verbatim" lineEndContext="#stay">
    <RegExpr attribute="Verbatim" context="#pop" String="verbatim&gt;" />
   </context>

   <context name="Heading" attribute="Heading" lineEndContext="#pop">
    <IncludeRules context="FindEntityRefs" />
   </context>


  <!-- HTML syntax -->
  <context name="FindEntityRefs" attribute="Normal Text" lineEndContext="#stay">
    <RegExpr attribute="EntityRef" context="#stay" String="&entref;" />
    <AnyChar attribute="Error" context="#stay" String="&amp;&lt;" />
  </context>

  <context name="FindPEntityRefs" attribute="Normal Text" lineEndContext="#stay">
    <RegExpr attribute="EntityRef" context="#stay" String="&entref;" />
    <RegExpr attribute="PEntityRef" context="#stay" String="%&name;;" />
    <AnyChar attribute="Error" context="#stay" String="&amp;%" />
  </context>

  <context name="FindAttributes" attribute="Normal Text" lineEndContext="#stay">
    <RegExpr attribute="Attribute" context="#stay" String="&name;" column="0"/>
    <RegExpr attribute="Attribute" context="#stay" String="\s+&name;" />
    <DetectChar attribute="Attribute" context="Value" char="=" />
  </context>


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

  <context name="CDATA" attribute="Normal Text" lineEndContext="#stay">
    <DetectSpaces/>
    <DetectIdentifier/>
    <StringDetect attribute="CDATA" context="#pop" String="]]&gt;" endRegion="cdata" />
    <StringDetect attribute="EntityRef" context="#stay" String="]]&amp;gt;" />
  </context>

  <context name="PI" attribute="Normal Text" lineEndContext="#stay">
    <Detect2Chars attribute="Processing Instruction" context="#pop" char="?" char1="&gt;" endRegion="pi" />
  </context>

  <context name="El Open" attribute="Normal Text" lineEndContext="#stay">
    <Detect2Chars attribute="Element" context="#pop" char="/" char1="&gt;" />
    <DetectChar attribute="Element" context="#pop" char="&gt;" />
    <IncludeRules context="FindAttributes" />
    <RegExpr attribute="Error" context="#stay" String="\S" />
  </context>

  <context name="El Close" attribute="Normal Text" lineEndContext="#stay">
    <DetectChar attribute="Element" context="#pop" char="&gt;" />
    <RegExpr attribute="Error" context="#stay" String="\S" />
  </context>

  <context name="El Close 2" attribute="Normal Text" lineEndContext="#stay">
    <DetectChar attribute="Element" context="#pop#pop#pop" char="&gt;" />
    <RegExpr attribute="Error" context="#stay" String="\S" />
  </context>

  <context name="El Close 3" attribute="Normal Text" lineEndContext="#stay">
    <DetectChar attribute="Element" context="#pop#pop#pop#pop" char="&gt;" />
    <RegExpr attribute="Error" context="#stay" String="\S" />
  </context>

  <context name="CSS" attribute="Normal Text" lineEndContext="#stay">
    <Detect2Chars attribute="Element" context="#pop" char="/" char1="&gt;" endRegion="style" />
    <DetectChar attribute="Element" context="CSS content" char="&gt;" />
    <IncludeRules context="FindAttributes" />
    <RegExpr attribute="Error" context="#stay" String="\S" />
  </context>

  <context name="CSS content" attribute="Normal Text" lineEndContext="#stay">
    <RegExpr attribute="Element" context="El Close 2" String="&lt;/style\b" insensitive="TRUE" endRegion="style" />
    <IncludeRules context="##CSS" includeAttrib="true"/>
  </context>

  <context name="JS" attribute="Normal Text" lineEndContext="#stay">
    <Detect2Chars attribute="Element" context="#pop" char="/" char1="&gt;" endRegion="script" />
    <DetectChar attribute="Element" context="JS content" char="&gt;" />
    <IncludeRules context="FindAttributes" />
    <RegExpr attribute="Error" context="#stay" String="\S" />
  </context>

  <context name="JS content" attribute="Normal Text" lineEndContext="#stay">
    <RegExpr attribute="Element" context="El Close 2" String="&lt;/script\b" insensitive="TRUE" endRegion="script" />
    <RegExpr attribute="Comment" context="JS comment close" String="//(?=.*&lt;/script\b)" insensitive="TRUE" />
    <IncludeRules context="##JavaScript" includeAttrib="true"/>
  </context>

  <context name="JS comment close" attribute="Comment" lineEndContext="#pop">
    <RegExpr attribute="Element" context="El Close 3" String="&lt;/script\b" insensitive="TRUE" endRegion="script" />
    <IncludeRules context="##Alerts" />
  </context>

  <context name="Value" attribute="Normal Text" lineEndContext="#stay" fallthrough="true" fallthroughContext="Value NQ">
    <DetectChar attribute="Value" context="Value DQ" char="&quot;" />
    <DetectChar attribute="Value" context="Value SQ" char="&apos;" />
    <DetectSpaces />
  </context>

  <context name="Value NQ" attribute="Normal Text" lineEndContext="#pop#pop" fallthrough="true" fallthroughContext="#pop#pop">
    <IncludeRules context="FindEntityRefs" />
    <RegExpr attribute="Value" context="#stay" String="/(?!&gt;)" />
    <RegExpr attribute="Value" context="#stay" String="[^/&gt;&lt;&quot;&apos;\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="Bold" defStyleNum="dsNormal" bold="1" />
  <itemData name="Italic" defStyleNum="dsNormal" italic="1" />
  <itemData name="Verbatim" defStyleNum="dsNormal" color="#7A4707" />
  <itemData name="List Item Bullet" defStyleNum="dsNormal" color="#0000FF" bold="1" />
  <itemData name="Signature" defStyleNum="dsComment" />
  <itemData name="Link" defStyleNum="dsNormal" color="#0000AA" />
  <itemData name="Set Variable" defStyleNum="dsNormal" color="#7A4707" bold="1" />
  <!-- HTML syntax -->
  <itemData name="CDATA" defStyleNum="dsBaseN" bold="1" />
  <itemData name="Comment" defStyleNum="dsComment" />
  <itemData name="Processing Instruction" defStyleNum="dsKeyword" />
  <itemData name="Element" defStyleNum="dsKeyword" />
  <itemData name="Attribute" defStyleNum="dsOthers" />
  <itemData name="Value" defStyleNum="dsString" color="#a00" />
  <itemData name="EntityRef" defStyleNum="dsDecVal" />
  <itemData name="PEntityRef" defStyleNum="dsDecVal" />
  <itemData name="Error" defStyleNum="dsError" />
  <itemData name="Heading" defStyleNum="dsString" color="#a00" bold="1"/>
</itemDatas>

</highlighting>
<general>
  <comments>
    <comment name="multiLine" start="&lt;!--" end="--&gt;" />
  </comments>
</general>
</language>

