116 lines
1.8 KiB
Scheme
116 lines
1.8 KiB
Scheme
(tag_name) @tag
|
|
|
|
; (erroneous_end_tag_name) @error ; we do not lint syntax errors
|
|
(comment) @comment @spell
|
|
|
|
(attribute_name) @tag.attribute
|
|
|
|
((attribute
|
|
(quoted_attribute_value) @string)
|
|
(#set! priority 99))
|
|
|
|
(text) @none @spell
|
|
|
|
((element
|
|
(start_tag
|
|
(tag_name) @_tag)
|
|
(text) @markup.heading)
|
|
(#eq? @_tag "title"))
|
|
|
|
((element
|
|
(start_tag
|
|
(tag_name) @_tag)
|
|
(text) @markup.heading.1)
|
|
(#eq? @_tag "h1"))
|
|
|
|
((element
|
|
(start_tag
|
|
(tag_name) @_tag)
|
|
(text) @markup.heading.2)
|
|
(#eq? @_tag "h2"))
|
|
|
|
((element
|
|
(start_tag
|
|
(tag_name) @_tag)
|
|
(text) @markup.heading.3)
|
|
(#eq? @_tag "h3"))
|
|
|
|
((element
|
|
(start_tag
|
|
(tag_name) @_tag)
|
|
(text) @markup.heading.4)
|
|
(#eq? @_tag "h4"))
|
|
|
|
((element
|
|
(start_tag
|
|
(tag_name) @_tag)
|
|
(text) @markup.heading.5)
|
|
(#eq? @_tag "h5"))
|
|
|
|
((element
|
|
(start_tag
|
|
(tag_name) @_tag)
|
|
(text) @markup.heading.6)
|
|
(#eq? @_tag "h6"))
|
|
|
|
((element
|
|
(start_tag
|
|
(tag_name) @_tag)
|
|
(text) @markup.strong)
|
|
(#any-of? @_tag "strong" "b"))
|
|
|
|
((element
|
|
(start_tag
|
|
(tag_name) @_tag)
|
|
(text) @markup.italic)
|
|
(#any-of? @_tag "em" "i"))
|
|
|
|
((element
|
|
(start_tag
|
|
(tag_name) @_tag)
|
|
(text) @markup.strikethrough)
|
|
(#any-of? @_tag "s" "del"))
|
|
|
|
((element
|
|
(start_tag
|
|
(tag_name) @_tag)
|
|
(text) @markup.underline)
|
|
(#eq? @_tag "u"))
|
|
|
|
((element
|
|
(start_tag
|
|
(tag_name) @_tag)
|
|
(text) @markup.raw)
|
|
(#any-of? @_tag "code" "kbd"))
|
|
|
|
((element
|
|
(start_tag
|
|
(tag_name) @_tag)
|
|
(text) @markup.link.label)
|
|
(#eq? @_tag "a"))
|
|
|
|
((attribute
|
|
(attribute_name) @_attr
|
|
(quoted_attribute_value
|
|
(attribute_value) @string.special.url))
|
|
(#any-of? @_attr "href" "src"))
|
|
|
|
((attribute
|
|
(attribute_name) @tag.attribute.url)
|
|
(#any-of? @tag.attribute.url "href" "src"))
|
|
|
|
[
|
|
"<"
|
|
">"
|
|
"</"
|
|
"/>"
|
|
] @tag.delimiter
|
|
|
|
"=" @operator
|
|
|
|
(doctype) @constant
|
|
|
|
"<!" @tag.delimiter
|
|
|
|
(entity) @character.special
|