From 144a4f402f51e826f3d4d1b555eecd668b93ebd7 Mon Sep 17 00:00:00 2001 From: Michael Davis Date: Wed, 12 Feb 2025 20:55:04 -0500 Subject: [PATCH] queries: Fix html highlight precedence ordering --- runtime/queries/html/highlights.scm | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/runtime/queries/html/highlights.scm b/runtime/queries/html/highlights.scm index 5dd61b7c0..0ade1d4ba 100644 --- a/runtime/queries/html/highlights.scm +++ b/runtime/queries/html/highlights.scm @@ -5,35 +5,35 @@ (comment) @comment ((attribute - (attribute_name) @_attr + (attribute_name) @attribute (quoted_attribute_value (attribute_value) @markup.link.url)) - (#any-of? @_attr "href" "src")) + (#any-of? @attribute "href" "src")) ((element (start_tag - (tag_name) @_tag) + (tag_name) @tag) (text) @markup.link.label) - (#eq? @_tag "a")) + (#eq? @tag "a")) (attribute [(attribute_value) (quoted_attribute_value)] @string) ((element (start_tag - (tag_name) @_tag) + (tag_name) @tag) (text) @markup.bold) - (#any-of? @_tag "strong" "b")) + (#any-of? @tag "strong" "b")) ((element (start_tag - (tag_name) @_tag) + (tag_name) @tag) (text) @markup.italic) - (#any-of? @_tag "em" "i")) + (#any-of? @tag "em" "i")) ((element (start_tag - (tag_name) @_tag) + (tag_name) @tag) (text) @markup.strikethrough) - (#any-of? @_tag "s" "del")) + (#any-of? @tag "s" "del")) [ "<"