diff options
author | David | 2022-10-03 14:14:16 +0000 |
---|---|---|
committer | GitHub | 2022-10-03 14:14:16 +0000 |
commit | 18f6ec7a8eb9ff7d46d4ec1bba52f48364e9c9d7 (patch) | |
tree | 63e9ce20367e98a06db4144ffe78bdbb661c8901 /runtime/queries/markdown | |
parent | 9d1793c45b22a6dce0a08937717887189b46c492 (diff) |
Update treesitter markdown (#4078)
* Update treesitter markdown
* Update inline and add table injections
Diffstat (limited to 'runtime/queries/markdown')
-rw-r--r-- | runtime/queries/markdown/injections.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/queries/markdown/injections.scm b/runtime/queries/markdown/injections.scm index f94b9f98..e184db15 100644 --- a/runtime/queries/markdown/injections.scm +++ b/runtime/queries/markdown/injections.scm @@ -7,6 +7,8 @@ ((html_block) @injection.content (#set! injection.language "html") (#set! injection.include-unnamed-children)) +((pipe_table_cell) @injection.content (#set! injection.language "markdown.inline") (#set! injection.include-unnamed-children)) + ((minus_metadata) @injection.content (#set! injection.language "yaml") (#set! injection.include-unnamed-children)) ((plus_metadata) @injection.content (#set! injection.language "toml") (#set! injection.include-unnamed-children)) |