blob: 914cdf96430902a64959866377073453c72bef2a [file] [log] [blame]
Benno Schulenbergc4b344f2014-02-23 16:07:44 +00001## Here is an example for XML files.
Benno Schulenberg5edd0412014-05-14 11:16:40 +00002
Benno Schulenbergb60f5552015-06-28 18:15:41 +00003syntax "xml" "\.([jrsx]html?|jnlp|mml|pom|rng|sgml?|svg|w[as]dl|wsdd|xjb|xml|xs(d|lt?)|xul)$"
Benno Schulenberg5edd0412014-05-14 11:16:40 +00004magic "(XML|SGML) (sub)?document text"
Mike Scalora6a2032f2016-05-25 22:13:50 +02005comment "<!--|-->"
Benno Schulenberg5edd0412014-05-14 11:16:40 +00006
Benno Schulenbergb60f5552015-06-28 18:15:41 +00007# The entire content of the tag:
Chris Allegrettadeb34f22008-05-31 21:55:21 +00008color green start="<" end=">"
Benno Schulenbergb60f5552015-06-28 18:15:41 +00009
10# The start and the end of the tag:
11color cyan "<[^> ]+" ">"
12
13# The strings inside the tag:
14color magenta "\"[^"]*\""
15
16# Comments:
Chris Allegrettadeb34f22008-05-31 21:55:21 +000017color yellow start="<!DOCTYPE" end="[/]?>"
18color yellow start="<!--" end="-->"
Benno Schulenbergb60f5552015-06-28 18:15:41 +000019
20# Escapes:
Chris Allegrettadeb34f22008-05-31 21:55:21 +000021color red "&[^;]*;"