Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'runtime/queries/org/highlights.scm')
| -rw-r--r-- | runtime/queries/org/highlights.scm | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/runtime/queries/org/highlights.scm b/runtime/queries/org/highlights.scm deleted file mode 100644 index db8329fa..00000000 --- a/runtime/queries/org/highlights.scm +++ /dev/null @@ -1,24 +0,0 @@ -(headline (stars) @markup.heading.marker (#eq? @markup.heading.marker "*")) @markup.heading.1 -(headline (stars) @markup.heading.marker (#eq? @markup.heading.marker "**")) @markup.heading.2 -(headline (stars) @markup.heading.marker (#eq? @markup.heading.marker "***")) @markup.heading.3 -(headline (stars) @markup.heading.marker (#eq? @markup.heading.marker "****")) @markup.heading.4 -(headline (stars) @markup.heading.marker (#eq? @markup.heading.marker "*****")) @markup.heading.5 -(headline (stars) @markup.heading.marker (#eq? @markup.heading.marker "******")) @markup.heading.6 - -(block) @markup.raw.block -(list) @markup.list.unnumbered -(directive) @markup.label -(property_drawer) @markup.label - - -((expr) @markup.bold - (#match? @markup.bold "\\*.*\\*")) - -((expr) @markup.italic - (#match? @markup.italic "/.*/")) -((expr) @markup.raw.inline - (#match? @markup.raw.inline "~.*~")) - -((expr) @markup.quote - (#match? @markup.quote "=.*=")) - |