mirror of
https://github.com/zyedidia/micro.git
synced 2026-02-06 07:00:24 +09:00
This may be a breaking change if you are using a plugin that checks the filetype. All the default plugins are now updated, just make the filetype you were checking for previously all lowercase.
12 lines
285 B
Plaintext
12 lines
285 B
Plaintext
## Here is an example for xml files.
|
|
##
|
|
|
|
syntax "xml" "\.([jrs]?html?|xml|sgml?|rng|plist)$"
|
|
color white "^.+$"
|
|
color green start="<" end=">"
|
|
color cyan "<[^> ]+"
|
|
color cyan ">"
|
|
color yellow start="<!DOCTYPE" end="[/]?>"
|
|
color yellow start="<!--" end="-->"
|
|
color red "&[^;]*;"
|