mirror of
https://github.com/zyedidia/micro.git
synced 2026-02-06 23:20:18 +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.
8 lines
324 B
Plaintext
8 lines
324 B
Plaintext
## Here is a short improved example for HTML.
|
|
##
|
|
syntax "html" "\.htm[l]?$"
|
|
color identifier start="<" end=">"
|
|
color special "&[^;[[:space:]]]*;"
|
|
color constant ""[^"]*"|qq\|.*\|"
|
|
color statement "(alt|bgcolor|height|href|label|longdesc|name|onclick|onfocus|onload|onmouseover|size|span|src|style|target|type|value|width)="
|