]> git.lizzy.rs Git - micro.git/blob - runtime/syntax/html.yaml
Add converted syntax files
[micro.git] / runtime / syntax / html.yaml
1 filetype: html
2
3 detect: 
4     filename: "\\.htm[l]?$"
5
6 rules:
7     - error: "<[^!].*?>"
8     - symbol.tag: "(?i)<[/]?(a(bbr|cronym|ddress|pplet|rea|rticle|side|udio)?|b(ase(font)?|d(i|o)|ig|lockquote|r)?|ca(nvas|ption)|center|cite|co(de|l|lgroup)|d(ata(list)?|d|el|etails|fn|ialog|ir|l|t)|em(bed)?|fieldset|fig(caption|ure)|font|form|(i)?frame|frameset|h[1-6]|hr|i|img|in(put|s)|kbd|keygen|label|legend|li(nk)?|ma(in|p|rk)|menu(item)?|met(a|er)|nav|no(frames|script)|o(l|pt(group|ion)|utput)|p(aram|icture|re|rogress)?|q|r(p|t|uby)|s(trike)?|samp|se(ction|lect)|small|source|span|strong|su(b|p|mmary)|textarea|time|track|u(l)?|var|video|wbr)( .*|>)*?>"
9     - symbol.tag.extended: "(?i)<[/]?(body|div|html|head(er)?|footer|title|table|t(body|d|h(ead)?|r|foot))( .*)*?>"
10     - preproc: "(?i)<[/]?(script|style)( .*)*?>"
11     - special: "&[^;[[:space:]]]*;"
12     - symbol: "[:=]"
13     - identifier: "(alt|bgcolor|height|href|id|label|longdesc|name|on(click|focus|load|mouseover)|size|span|src|style|target|type|value|width)="
14     - constant.string: "\"[^\"]*\""
15     - constant.number: "(?i)#[0-9A-F]{6,6}"
16     - default:
17         start: ">"
18         end: "<"
19         rules: []
20
21     - symbol.tag: "<|>"
22     - constant.string.url: "(ftp(s)?|http(s)?|git|chrome)://[^  ]+"
23     - comment: "<!--.+?-->"
24     - preproc: "<!DOCTYPE.+?>"