micro/runtime/syntax/xml.micro

12 lines
285 B
Text
Raw Normal View History

2016-03-21 16:16:02 +00:00
## Here is an example for xml files.
##
2016-07-15 21:29:36 +00:00
syntax "XML" "\.([jrs]?html?|xml|sgml?|rng|plist)$"
2016-03-21 16:16:02 +00:00
color white "^.+$"
2016-03-25 20:41:36 +00:00
color green start="<" end=">"
2016-03-21 16:16:02 +00:00
color cyan "<[^> ]+"
color cyan ">"
2016-03-25 20:41:36 +00:00
color yellow start="<!DOCTYPE" end="[/]?>"
color yellow start="<!--" end="-->"
2016-03-21 16:16:02 +00:00
color red "&[^;]*;"