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
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE language
[
<!-- The characters ! ? @ are "internal" or system macros, normally not usable, in general: user macros are just letters, see
https://wiki.contextgarden.net/System_Macros/Scratch_Variables and https://www.mail-archive.com/ntg-context@ntg.nl/msg87737.html
In practice any non-special character works, though english characters should be used, except for one character macros, they use any symbol -->
<!ENTITY macro "\\([[:alpha:]]+|[[:graph:]])">
]>
<language
name="ConTeXt"
version="11"
section="Markup"
kateversion="5.79"
priority="8"
extensions="*.ctx;*.mkiv;*.mkvi;*.mkxl;*.mklx"
mimetype="text/x-tex"
casesensitive="1"
author="Philipp A. (flying-sheep@web.de)"
license="GPL"
>
<highlighting>
<list name="titles">
<item>\part</item>
<item>\chapter</item>
<item>\section</item>
<item>\subsection</item>
<item>\subsubsection</item>
<item>\subsubsubsection</item>
<item>\subsubsubsubsection</item>
<item>\title</item>
<item>\subject</item>
<item>\subsubject</item>
<item>\subsubsubject</item>
<item>\subsubsubsubject</item>
<item>\subsubsubsubsubject</item>
</list>
<list name="mathMacros">
<item>\m</item>
<item>\math</item>
<item>\mathematics</item>
<item>\formula</item>
</list>
<list name="startEnvironments">
<item>\bTABLEhead</item>
<item>\bTABLEnext</item>
<item>\bTABLEbody</item>
<item>\bTABLEfoot</item>
<item>\bTABLE</item>
<item>\bTR</item>
<item>\bTD</item>
</list>
<list name="stopEnvironments">
<item>\eTABLEhead</item>
<item>\eTABLEnext</item>
<item>\eTABLEbody</item>
<item>\eTABLEfoot</item>
<item>\eTABLE</item>
<item>\eTR</item>
<item>\eTD</item>
</list>
<list name="startMetaPost">
<item>\startMPinclusions</item>
<item>\startuseMPgraphic</item>
<item>\startreusableMPgraphic</item>
<item>\startstaticMPfigure</item>
<item>\startuniqueMPgraphic</item>
<item>\startMPpage</item>
<item>\startMPcode</item>
<item>\startMP</item>
</list>
<list name="stopMetaPost">
<item>\stopMPinclusions</item>
<item>\stopuseMPgraphic</item>
<item>\stopreusableMPgraphic</item>
<item>\stopstaticMPfigure</item>
<item>\stopuniqueMPgraphic</item>
<item>\stopMPpage</item>
<item>\stopMPcode</item>
<item>\stopMP</item>
</list>
<contexts>
<!-- Normal text -->
<context name="Normal Text" attribute="Normal Text" lineEndContext="#stay">
<keyword String="titles" attribute="Section" context="#stay"/>
<Detect2Chars char="$" char1="$" attribute="Block" context="MathModeDisplay"/>
<DetectChar char="$" attribute="Block" context="MathMode"/>
<keyword String="mathMacros" attribute="Block" context="MathModeMacroFind"/>
<StringDetect String="\startformula" attribute="Block" context="MathModeFormula" beginRegion="mathModeBlock"/>
<StringDetect String="\starttyping" attribute="Block" context="Verbatim" beginRegion="typingBlock"/>
<StringDetect String="\startluacode" attribute="Block" context="LuaCode" beginRegion="luaBlock"/>
<StringDetect String="\startLUA" attribute="Block" context="LuaCode" beginRegion="luaBlock"/>
<StringDetect String="\startXML" attribute="Block" context="XmlCode" beginRegion="xmlBlock"/>
<keyword String="startMetaPost" attribute="Block" context="MetaPostCode" beginRegion="metaPostBlock"/>
<IncludeRules context="Common"/>
</context>
<!-- Comment -->
<context name="Comment" attribute="Comment" lineEndContext="#pop">
<IncludeRules context="##Comments"/>
</context>
<!-- Math Modes -->
<context name="MathMode" attribute="Math" lineEndContext="#stay">
<DetectChar char="$" attribute="Block" context="#pop"/>
<StringDetect String="\stopformula" attribute="Error" context="#stay" />
<IncludeRules context="MathModeCommon"/>
</context>
<context name="MathModeMacroFind" attribute="Math" lineEndContext="#stay">
<DetectChar char="{" attribute="Brace" context="#pop!MathModeMacro"/>
<RegExpr String="¯o;" attribute="Macro" context="#pop"/> <!-- Single token -->
<RegExpr String="[[:graph:]]" attribute="Math" context="#pop"/> <!-- Single token -->
</context>
<context name="MathModeMacro" attribute="Math" lineEndContext="#stay">
<DetectChar char="{" attribute="Brace" context="MathModeMacro"/>
<DetectChar char="}" attribute="Brace" context="#pop"/>
<DetectChar char="$" attribute="Error" context="#stay"/>
<StringDetect String="\stopformula" attribute="Error" context="#stay"/>
<IncludeRules context="MathModeCommon"/>
</context>
<context name="MathModeDisplay" attribute="Math" lineEndContext="#stay">
<Detect2Chars char="$" char1="$" attribute="Block" context="#pop"/>
<DetectChar char="$" attribute="Error" context="#stay"/>
<StringDetect String="\stopformula" attribute="Error" context="#stay"/>
<IncludeRules context="MathModeCommon"/>
</context>
<context name="MathModeFormula" attribute="Math" lineEndContext="#stay">
<DetectChar char="$" attribute="Error" context="#stay"/>
<StringDetect String="\stopformula" attribute="Block" context="#pop" endRegion="mathModeBlock"/>
<IncludeRules context="MathModeCommon"/>
</context>
<context name="MathModeCommon" attribute="Error" lineEndContext="#stay">
<AnyChar String="^_" attribute="Brace" context="#stay"/>
<StringDetect String="\startformula" attribute="Error" context="#stay"/>
<StringDetect String="\text" attribute="Block" context="MathModeTextFind"/>
<IncludeRules context="Common"/>
</context>
<!--Math text-->
<context name="MathModeTextFind" attribute="Normal Text" lineEndContext="#stay" >
<DetectChar char="{" attribute="Brace" context="#pop!MathModeText"/>
</context>
<context name="MathModeText" attribute="Normal Text" lineEndContext="#stay" >
<DetectChar char="{" attribute="Brace" context="MathModeText"/>
<DetectChar char="}" attribute="Brace" context="#pop"/>
<IncludeRules context="Normal Text"/>
</context>
<!--Verbatim TODO: \startC support-->
<context name="Verbatim" attribute="Verbatim" lineEndContext="#stay">
<StringDetect String="\starttyping" attribute="Verbatim" context="NestedVerbatim"/>
<StringDetect String="\stoptyping" attribute="Block" context="#pop" endRegion="typingBlock"/>
</context>
<context name="NestedVerbatim" attribute="Verbatim" lineEndContext="#stay">
<StringDetect String="\starttyping" attribute="Verbatim" context="NestedVerbatim"/>
<StringDetect String="\stoptyping" attribute="Verbatim" context="#pop"/>
</context>
<context name="MetaPostCode" attribute="Normal Text" lineEndContext="#stay">
<keyword String="stopMetaPost" attribute="Block" context="#pop" endRegion="metaPostBlock"/>
<IncludeRules context="##Metapost/Metafont"/>
</context>
<context name="LuaCode" attribute="Normal Text" lineEndContext="#stay">
<StringDetect String="\stopluacode" attribute="Block" context="#pop" endRegion="luaBlock"/>
<StringDetect String="\stopLUA" attribute="Block" context="#pop" endRegion="luaBlock"/>
<IncludeRules context="##Lua"/>
</context>
<context name="XmlCode" attribute="Normal Text" lineEndContext="#stay">
<StringDetect String="\stopXML" attribute="Block" context="#pop" endRegion="xmlBlock"/>
<IncludeRules context="##XML"/>
</context>
<!--Common-->
<context name="Common" attribute="Error" lineEndContext="#stay">
<DetectChar char="%" attribute="Comment" context="Comment"/>
<RegExpr String="\\start(?:[a-zA-Z_]+)" attribute="Block" context="#stay" beginRegion="block"/>
<RegExpr String="\\stop(?:[a-zA-Z_]+)" attribute="Block" context="#stay" endRegion="block"/>
<keyword String="startEnvironments" attribute="Block" context="#stay" beginRegion="block"/>
<keyword String="stopEnvironments" attribute="Block" context="#stay" endRegion="block"/>
<RegExpr String="¯o;" attribute="Macro" context="#stay"/>
<DetectChar char="{" attribute="Brace" context="#stay" beginRegion="block"/>
<DetectChar char="}" attribute="Brace" context="#stay" endRegion="block"/>
</context>
</contexts>
<itemDatas>
<itemData name="Normal Text" defStyleNum="dsNormal" /><!--(Hi, I’m text)-->
<itemData name="Comment" defStyleNum="dsComment" /><!--(%Comment)-->
<itemData name="Section" defStyleNum="dsKeyword" /><!--\section{(Fancy!)}-->
<itemData name="Brace" defStyleNum="dsChar" spellChecking="false"/><!--({})-->
<itemData name="Math" defStyleNum="dsOthers" spellChecking="false"/><!--($5$)-->
<itemData name="Macro" defStyleNum="dsFunction" spellChecking="false"/><!--(\foo)-->
<itemData name="Block" defStyleNum="dsRegionMarker" spellChecking="false"/><!--\start(bar), \stop(bar)-->
<itemData name="Error" defStyleNum="dsError" spellChecking="false"/><!--$($$)-->
<itemData name="Verbatim" defStyleNum="dsString" spellChecking="false"/><!--\starttyping(eggs)\stoptyping, \definetyping[C] \startC(umm…)\stopC-->
</itemDatas>
</highlighting>
<general>
<keywords weakDeliminator="\" wordWrapDeliminator=",{}[]"/>
<comments>
<comment name="singleLine" start="%" />
</comments>
</general>
<spellchecking>
<encodings>
<encoding string="''" ignored="true" />
</encodings>
</spellchecking>
</language>
<!-- kate: space-indent off; indent-width 4; -->
|