micro/runtime/syntax/xml.micro

12 lines
285 B
Text
Raw Normal View History

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