Diffstat (limited to 'share/tinykate/syntax/html.xml') (more/less context) (ignore whitespace changes)
-rw-r--r-- | share/tinykate/syntax/html.xml | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/share/tinykate/syntax/html.xml b/share/tinykate/syntax/html.xml new file mode 100644 index 0000000..f4ce3f0 --- a/dev/null +++ b/share/tinykate/syntax/html.xml @@ -0,0 +1,50 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE language SYSTEM "language.dtd"> +<language name="HTML" version="1.00" kateversion="2.0" section="Markup" extensions="*.html;*.htm;*.shtml;*.shtm" mimetype="text/html"> + <highlighting> + <contexts> + <context attribute="0" lineEndContext="#stay"> + <StringDetect attribute="Comment" context="6" String="<!--"/> + <RegExpr attribute="1" context="1" String="<\s*\/?\s*[a-zA-Z0-9_]*" /> + </context> + + <context attribute="2" lineEndContext="#stay"> + <DetectChar attribute="1" context="#pop" char=">"/> + <RegExpr attribute="0" context="2" String="\s*=\s*"/> + </context> + + <context attribute="8" lineEndContext="#stay"> + <RegExpr attribute="3" context="#pop" String="\s*#?[a-zA-Z0-9]*" /> + <DetectChar attribute="3" context="3" char=""" /> + </context> + + <context attribute="3" lineEndContext="#stay"> + <DetectChar attribute="3" context="#pop#pop" char=""" /> + </context> + + <context attribute="5" lineEndContext="#pop"/> + <context attribute="4" lineEndContext="#pop"> + <DetectChar attribute="4" context="#pop" char="'"/> + </context> + + <context attribute="Comment" lineEndContext="#stay"> + <String---Detect attribute="Comment" context="6" String="<!--"/> + <StringDetect attribute="Comment" context="#pop" String="-->"/> + </context> + </contexts> + <itemDatas> + <itemData name="Normal Text" defStyleNum="dsNormal"/> + <itemData name="Keyword" defStyleNum="dsKeyword"/> + <itemData name="Identifier" defStyleNum="dsOthers"/> + <itemData name="Types" defStyleNum="dsDataType"/> + <itemData name="String" defStyleNum="dsString"/> + <itemData name="Comment" defStyleNum="dsComment"/> + </itemDatas> + </highlighting> + <general> + <comments> + <comment name="multiLine" start="<!--" end="//-->" /> + </comments> + <keywords casesensitive="0" /> + </general> +</language> |