<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE language SYSTEM "language.dtd" [
<!ENTITY name "[A-Za-z][A-Za-z0-9_-]*">
<!ENTITY voidtag "(area|base|br|col|embed|hr|img|input|keygen|link|meta|param|source|track|wbr)">
<!ENTITY entity "&amp;(#[0-9]+|#[xX][0-9A-Fa-f]+|[A-Za-z][A-Za-z0-9_-]*);">
]>
<!--

Pug, known as Jade before, is a HTML template engine.

https://pugjs.org/

Changelog

Version 1 - Guo Yunhe guoyunhebrave@gmail.com - 2017-04-14
- Basic Pug/Jade syntax support
- Do NOT support multi-line comment or text block

-->
<language name="Pug" version="3" kateversion="5.0" section="Markup" extensions="*.pug;*.jade" mimetype="" priority="10" author="Guo Yunhe (guoyunhebrave@gmail.com)" license="LGPL">
  <highlighting>
    <list name="controlflow">
      <item>case</item>
      <item>when</item>
      <item>default</item>
      <item>if</item>
      <item>unless</item>
      <item>else</item>
      <item>each</item>
      <item>while</item>
    </list>
    <contexts>
      <context name="Start" attribute="Normal Text" lineEndContext="#stay">
        <Detect2Chars attribute="Comment" context="Comment" char="/" char1="/"/>
        <StringDetect attribute="Doctype" context="#stay" String="doctype" insensitive="true"/>
        <RegExpr attribute="ControlFlow" context="JavaScript" String="\belse if\b" firstNonSpace="true"/>
        <keyword attribute="ControlFlow" context="JavaScript" String="controlflow" firstNonSpace="true"/>
        <DetectIdentifier attribute="Normal Text" context="Element" firstNonSpace="true" lookAhead="true"/>
        <DetectChar attribute="Normal Text" context="Element" char="#" firstNonSpace="true" lookAhead="true"/>
        <DetectChar attribute="Normal Text" context="Element" char="." firstNonSpace="true" lookAhead="true"/>
        <DetectChar attribute="Normal Text" context="JavaScript" char="-" firstNonSpace="true"/>
        <DetectChar attribute="Normal Text" context="#stay" char="|" firstNonSpace="true"/>
      </context>
      <context name="FindInterpolation" attribute="Normal Text" lineEndContext="#stay">
        <Detect2Chars attribute="Interpolation" context="JavaScript" char="#" char1="{"/>
        <DetectChar attribute="Interpolation" context="#stay" char="}"/>
      </context>
      <context name="FindEntities" attribute="Normal Text" lineEndContext="#stay">
        <RegExpr attribute="Entity" context="#stay" String="&entity;"/>
        <AnyChar attribute="Error" context="#stay" String="&amp;&lt;"/>
      </context>
      <context name="Element" attribute="Normal Text" lineEndContext="#pop">
        <RegExpr attribute="Element" context="#stay" String="&name;"/>
        <RegExpr attribute="ID" context="#stay" String="#&name;"/>
        <RegExpr attribute="Class" context="#stay" String="\.&name;"/>
        <DetectChar attribute="Normal Text" context="Attributes" char="("/>
        <StringDetect attribute="Normal Text" context="AttributeObject" String="&amp;attributes("/>
        <RegExpr attribute="Normal Text" context="Element" String=":\s+"/>
        <RegExpr attribute="Normal Text" context="JavaScript" String="=\s+"/>
        <DetectChar attribute="Normal Text" context="Text" char=" "/>
      </context>
      <context name="Attributes" attribute="Normal Text" lineEndContext="#stay">
        <RegExpr attribute="Attribute" context="Attribute" String="(&name;|\(&name;\))"/>
        <DetectChar attribute="Normal Text" context="#pop" char=")"/>
      </context>
      <context name="AttributeObject" attribute="Normal Text" lineEndContext="#stay">
        <DetectChar attribute="Normal Text" context="#pop" char=")"/>
        <IncludeRules context="Normal##JavaScript" includeAttrib="true"/>
      </context>
      <context name="Attribute" attribute="Attribute" lineEndContext="#pop">
        <AnyChar attribute="Normal Text" context="#pop" String=",)" lookAhead="true"/>
        <RegExpr attribute="Attribute" context="#pop" String="\s+(&name;|\(&name;\))(=|\s|\))" lookAhead="true"/>
        <DetectChar attribute="Attribute" context="Value" char="="/>
      </context>
      <context name="Value" attribute="Normal Text" lineEndContext="#pop">
        <AnyChar attribute="Normal Text" context="#pop" String=",)" lookAhead="true"/>
        <RegExpr attribute="Attribute" context="#pop" String="\s+(&name;|\(&name;\))(=|\s|\))" lookAhead="true"/>
        <IncludeRules context="Normal##JavaScript" includeAttrib="true"/>
      </context>
      <context name="Text" attribute="Normal Text" lineEndContext="#pop">
        <DetectSpaces/>
        <IncludeRules context="FindEntities" includeAttrib="true"/>
        <IncludeRules context="FindInterpolation" includeAttrib="true"/>
      </context>
      <context name="JavaScript" attribute="Normal Text" lineEndContext="#pop">
        <IncludeRules context="Normal##JavaScript" includeAttrib="true"/>
        <AnyChar attribute="Normal Text" context="#pop" String=",)}:" lookAhead="true"/>
      </context>
      <context name="Comment" attribute="Comment" lineEndContext="#pop">
        <IncludeRules context="##Alerts"/>
      </context>
    </contexts>
    <itemDatas>
      <itemData name="Normal Text" defStyleNum="dsNormal" spellChecking="false"/>
      <itemData name="Keyword" defStyleNum="dsKeyword" spellChecking="false"/>
      <itemData name="ControlFlow" defStyleNum="dsControlFlow" spellChecking="false"/>
      <itemData name="Reserved" defStyleNum="dsKeyword" italic="true" spellChecking="false"/>
      <itemData name="Module" defStyleNum="dsImport" spellChecking="false"/>
      <itemData name="Function" defStyleNum="dsFunction" spellChecking="false"/>
      <itemData name="Objects" defStyleNum="dsVariable" spellChecking="false"/>
      <itemData name="Object Member" defStyleNum="dsAttribute" spellChecking="false"/>
      <itemData name="Decimal" defStyleNum="dsDecVal" spellChecking="false"/>
      <itemData name="Octal" defStyleNum="dsBaseN" spellChecking="false"/>
      <itemData name="Hex" defStyleNum="dsBaseN" spellChecking="false"/>
      <itemData name="Float" defStyleNum="dsFloat" spellChecking="false"/>
      <itemData name="Escape" defStyleNum="dsSpecialChar" spellChecking="false"/>
      <itemData name="String" defStyleNum="dsString"/>
      <itemData name="Template" defStyleNum="dsVerbatimString"/>
      <itemData name="Substitution" defStyleNum="dsSpecialChar" spellChecking="false"/>
      <itemData name="Comment" defStyleNum="dsComment"/>
      <itemData name="Symbol" defStyleNum="dsOperator" spellChecking="false"/>
      <itemData name="Regular Expression" defStyleNum="dsSpecialString" spellChecking="false"/>
      <itemData name="Pattern Internal Operator" defStyleNum="dsSpecialChar" spellChecking="false"/>
      <itemData name="Pattern Character Class" defStyleNum="dsSpecialChar" spellChecking="false"/>
      <itemData name="Region Marker" defStyleNum="dsRegionMarker" spellChecking="false"/>
      <itemData name="JSON" defStyleNum="dsDataType" spellChecking="false"/>
      <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="ID" defStyleNum="dsPreprocessor" spellChecking="false"/>
      <itemData name="Class" defStyleNum="dsFunction" spellChecking="false"/>
      <itemData name="Attribute" defStyleNum="dsAttribute" spellChecking="false"/>
      <itemData name="Entity" defStyleNum="dsDecVal" spellChecking="false"/>
      <itemData name="Interpolation" defStyleNum="dsPreprocessor" spellChecking="false"/>
      <itemData name="Error" defStyleNum="dsError" spellChecking="false"/>
    </itemDatas>
  </highlighting>
  <general>
    <keywords casesensitive="1" weakDeliminator="-"/>
    <comments>
      <comment name="singleLine" start="//-"/>
      <comment name="singleLine" start="//"/>
    </comments>
    <indentation mode="python"/>
    <folding indentationsensitive="1"/>
    <emptyLines>
      <emptyLine regexpr="(?:\s+|\s*#.*)"/>
    </emptyLines>
  </general>
</language>