aboutsummaryrefslogtreecommitdiff
path: root/runtime/queries/typst
diff options
context:
space:
mode:
authorIdobenhamo2024-01-23 17:27:46 +0000
committerGitHub2024-01-23 17:27:46 +0000
commit299bcce481abe7e13f2023ec6e82c59b43f12f47 (patch)
treed7e8e446f80ae0d4f6f1e7ad9f01cb332ad2d470 /runtime/queries/typst
parent2058b3732c340f5bc29eee2aca1d8edae15e1314 (diff)
Update Typst Tree-Sitter grammar (#9403)
Co-authored-by: Idobenhamo <idobenhamo@users.noreply.github.com>
Diffstat (limited to 'runtime/queries/typst')
-rw-r--r--runtime/queries/typst/highlights.scm7
-rw-r--r--runtime/queries/typst/injections.scm3
2 files changed, 8 insertions, 2 deletions
diff --git a/runtime/queries/typst/highlights.scm b/runtime/queries/typst/highlights.scm
index b422e05b..0bbccede 100644
--- a/runtime/queries/typst/highlights.scm
+++ b/runtime/queries/typst/highlights.scm
@@ -55,7 +55,12 @@
; MARKUP
(item "-" @markup.list)
(term ["/" ":"] @markup.list)
-(heading ["=" "==" "===" "====" "====="] @markup.heading.marker) @markup.heading
+(heading "=" @markup.heading.marker) @markup.heading.1
+(heading "==" @markup.heading.marker) @markup.heading.2
+(heading "===" @markup.heading.marker) @markup.heading.3
+(heading "====" @markup.heading.marker) @markup.heading.4
+(heading "=====" @markup.heading.marker) @markup.heading.5
+(heading "======" @markup.heading.marker) @markup.heading.6
(url) @tag
(emph) @markup.italic
(strong) @markup.bold
diff --git a/runtime/queries/typst/injections.scm b/runtime/queries/typst/injections.scm
index 8039b4ca..06a25097 100644
--- a/runtime/queries/typst/injections.scm
+++ b/runtime/queries/typst/injections.scm
@@ -3,4 +3,5 @@
(raw_blck
lang: (ident) @injection.language
- (blob) @injection.content) \ No newline at end of file
+ (blob) @injection.content)
+