mirror of
https://github.com/scopatz/nanorc.git
synced 2024-10-18 02:06:40 -07:00
Merge pull request #44 from stiemannkj1/master
Fixes #43: html.nanorc yellow regex is greedy and matches all quotes until the final quote.
This commit is contained in:
commit
44d0c55b36
1 changed files with 2 additions and 2 deletions
|
|
@ -3,5 +3,5 @@
|
||||||
syntax "html" "\.htm[l]?$"
|
syntax "html" "\.htm[l]?$"
|
||||||
color brightblue start="<" end=">"
|
color brightblue start="<" end=">"
|
||||||
color red "&[^;[[:space:]]]*;"
|
color red "&[^;[[:space:]]]*;"
|
||||||
color yellow "".*"|qq\|.*\|"
|
color yellow ""[^"]*"|qq\|.*\|"
|
||||||
color red "(alt|bgcolor|height|href|label|longdesc|name|onclick|onfocus|onload|onmouseover|size|span|src|style|target|type|value|width)="
|
color red "(alt|bgcolor|height|href|label|longdesc|name|onclick|onfocus|onload|onmouseover|size|span|src|style|target|type|value|width)="
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue