diff options
author | Roberto Vidal | 2023-03-05 02:36:01 +0000 |
---|---|---|
committer | GitHub | 2023-03-05 02:36:01 +0000 |
commit | 725d9aecf08262e83553e54aa57d9bbec4841c80 (patch) | |
tree | 427a4126b46a5f84c8ec8bd80783923c85fdad00 /runtime/queries/rst | |
parent | cf153080d7712f9a03e5e2c30bbae10eade1dc74 (diff) |
Add support for reStructuredText (#6180)
Diffstat (limited to 'runtime/queries/rst')
-rw-r--r-- | runtime/queries/rst/highlights.scm | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/runtime/queries/rst/highlights.scm b/runtime/queries/rst/highlights.scm new file mode 100644 index 00000000..73c0def4 --- /dev/null +++ b/runtime/queries/rst/highlights.scm @@ -0,0 +1,38 @@ +(comment) @comment + +[ + (title) +] @markup.heading.1 + +[ + "adornment" +] @markup.heading.marker + +[ + (target) + (reference) +] @markup.link.url + +[ + "bullet" +] @markup.list.unnumbered + +(strong) @markup.bold +(emphasis) @markup.italic +(literal) @markup.raw.inline + +(list_item + (term) @markup.bold + (classifier)? @markup.italic) + +(directive + [".." (type) "::"] @function +) + +(field + [":" (field_name) ":"] @variable.other.member +) + +(interpreted_text) @markup.raw.inline + +(interpreted_text (role)) @keyword |