<feed xmlns='http://www.w3.org/2005/Atom'>
<title>nvim-treesitter/queries/vue, branch docs/contrib</title>
<subtitle>[no description]</subtitle>
<id>http://git.sudomsg.com/mirror/nvim-treesitter/atom/queries/vue?h=docs%2Fcontrib</id>
<link rel='self' href='http://git.sudomsg.com/mirror/nvim-treesitter/atom/queries/vue?h=docs%2Fcontrib'/>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/'/>
<updated>2025-05-12T16:43:40Z</updated>
<entry>
<title>feat!: drop modules, general refactor and cleanup</title>
<updated>2025-05-12T16:43:40Z</updated>
<author>
<name>Christian Clason</name>
<email>c.clason@uni-graz.at</email>
</author>
<published>2023-06-12T15:54:30Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=692b051b09935653befdb8f7ba8afdb640adf17b'/>
<id>urn:sha1:692b051b09935653befdb8f7ba8afdb640adf17b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>make sass to be highlighted in vue files (#6526)</title>
<updated>2024-04-29T04:39:02Z</updated>
<author>
<name>Andrey Sidorov</name>
<email>takandar@gmail.com</email>
</author>
<published>2024-04-29T04:39:02Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=c3ab6a59039293cc27cea8a07e74c2d0ce28e36c'/>
<id>urn:sha1:c3ab6a59039293cc27cea8a07e74c2d0ce28e36c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>feat(vue): switch to new parser (#6233)</title>
<updated>2024-03-02T15:54:16Z</updated>
<author>
<name>Christian Clason</name>
<email>c.clason@uni-graz.at</email>
</author>
<published>2024-03-02T15:54:16Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=ada920f2a43f87a26356d386cefe656bd6b3e9a8'/>
<id>urn:sha1:ada920f2a43f87a26356d386cefe656bd6b3e9a8</id>
<content type='text'>
* feat(vue): switch to new parser

---------

Co-authored-by: Phạm Huy Hoàng &lt;hoangtun0810@gmail.com&gt;</content>
</entry>
<entry>
<title>feat(format): extra newline after modeline</title>
<updated>2024-02-29T14:05:30Z</updated>
<author>
<name>Phạm Huy Hoàng</name>
<email>hoangtun0810@gmail.com</email>
</author>
<published>2024-02-18T15:00:07Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=62b0bb4f24ad09f535efe44cc9d088f90dcd2498'/>
<id>urn:sha1:62b0bb4f24ad09f535efe44cc9d088f90dcd2498</id>
<content type='text'>
</content>
</entry>
<entry>
<title>chore: format queries</title>
<updated>2024-01-21T14:55:02Z</updated>
<author>
<name>Phạm Huy Hoàng</name>
<email>hoangtun0810@gmail.com</email>
</author>
<published>2024-01-21T13:05:44Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=77e298e4de607d69aa7f37dc6dcba6aee131ac7f'/>
<id>urn:sha1:77e298e4de607d69aa7f37dc6dcba6aee131ac7f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>chore: query formatting</title>
<updated>2024-01-19T15:58:37Z</updated>
<author>
<name>Pham Huy Hoang</name>
<email>hoangtun0810@gmail.com</email>
</author>
<published>2024-01-06T06:05:50Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=57a8acf0c4ed5e7f6dda83c3f9b073f8a99a70f9'/>
<id>urn:sha1:57a8acf0c4ed5e7f6dda83c3f9b073f8a99a70f9</id>
<content type='text'>
</content>
</entry>
<entry>
<title>feat!: align standard captures with upstream</title>
<updated>2024-01-19T15:58:37Z</updated>
<author>
<name>Christian Clason</name>
<email>c.clason@uni-graz.at</email>
</author>
<published>2023-12-24T09:00:20Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=1ae9b0e4558fe7868f8cda2db65239cfb14836d0'/>
<id>urn:sha1:1ae9b0e4558fe7868f8cda2db65239cfb14836d0</id>
<content type='text'>
Problem: Sharing highlight queries with upstream tree-sitter and
Helix is difficult.

Solution: Where reasonable, use capture names in tree-sitter's standard
list or Helix's Atom-style hierarchy.

Specifically:

* tree-sitter "standard capture names"
  (https://github.com/tree-sitter/tree-sitter/blob/3f44b896852eb7daaa6df4fb778c9bb52c70c815/highlight/src/lib.rs#L20-L72):

  - `@parameter` -&gt; `@variable.parameter`
  - `@field` -&gt; `@variable.member`
  - `@namespace` -&gt; `@module`
  - `@float` -&gt; `@number.float`
  - `@symbol` -&gt; `@string.special.symbol`
  - `@string.regex` -&gt; `@string.regexp`
  - `@text.*` -&gt; `@markup.*` (`strong`, `italic`, `link`, `strikethrough`; with exceptions; see below)
  - `@text.title` -&gt; `@markup.heading`
  - `@text.literal` -&gt; `@markup.raw`
  - `@text.reference` -&gt; `@markup.link`
  - `@text.uri` -&gt; `@markup.link.url` (in markup links)
  - `@string.special` -&gt; `@markup.link.label` (non-url links)
  - `@punctuation.special` -&gt; `@markup.list` (markdown lists only; move subitems from `@text.todo`)

* Helix captures
  (https://docs.helix-editor.com/master/themes.html#syntax-highlighting):

  - `@method` -&gt; `@function.method`
  - `@method.call` -&gt; `@function.method.call`
  - `@text.{todo,warning,note,danger}` -&gt; `@comment.{error,warning,hint,info,todo}`
  - `@text.diff.{add,delete,}` -&gt; `@diff.{plus,minus,delta}`
  - `@text.uri` -&gt; `@string.special.url` (outside markup)
  - `@preproc` -&gt; `@keyword.directive`
  - `@define` -&gt; `@keyword.directive`(`.define`?)
  - `@storageclass` -&gt; `@keyword.storage`
  - `@conditional` -&gt; `@keyword.conditional`
  - `@debug` -&gt; `@keyword.debug`
  - `@exception` -&gt; `@keyword.exception`
  - `@include` -&gt; `@keyword.import`
  - `@repeat` -&gt; `@keyword.repeat`

* cleanup

  - remove some redundant `@conceal` (but still allow it for conceal-only patterns)
  - remove obsolete `@error` (syntax linting is out of scope for this repo)
  - sort, cleanup capture list in `CONTRIBUTING.md`
</content>
</entry>
<entry>
<title>injections(vue): inject typescript instead of js (#5577)</title>
<updated>2023-11-06T02:04:13Z</updated>
<author>
<name>Pham Huy Hoang</name>
<email>hoangtun0810@gmail.com</email>
</author>
<published>2023-11-06T02:04:13Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=80f66cdef147bd8d8a619dfd9b18da37af5ceaf6'/>
<id>urn:sha1:80f66cdef147bd8d8a619dfd9b18da37af5ceaf6</id>
<content type='text'>
Interpolations (`{{valid js code}}`) and directive attributes
(`&lt;element :directive="valid js code"`) can also be typescript code,
hence we can inject typescript instead of javascript here and still
be ok with highlights (bar some syntax differences between ts and js)
</content>
</entry>
<entry>
<title>refactor: remove `include-children` from queries (#5226)</title>
<updated>2023-09-12T06:36:50Z</updated>
<author>
<name>Pham Huy Hoang</name>
<email>hoangtun0810@gmail.com</email>
</author>
<published>2023-09-12T06:36:50Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=bfb4601f48c127ae6fb24a30ebf0495aaca8d28f'/>
<id>urn:sha1:bfb4601f48c127ae6fb24a30ebf0495aaca8d28f</id>
<content type='text'>
These `include-children` were to alleviate an issue with empty range language tree, which has been fixed for Neovim nightly/Neovim 0.9.2</content>
</entry>
<entry>
<title>chore(injections)!: update injection syntax to 0.9</title>
<updated>2023-08-12T15:34:15Z</updated>
<author>
<name>Pham Huy Hoang</name>
<email>hoangtun0810@gmail.com</email>
</author>
<published>2023-05-03T10:07:59Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=78b54eb7f6a9956d25a3911fa0dfd0cabfe2a4c5'/>
<id>urn:sha1:78b54eb7f6a9956d25a3911fa0dfd0cabfe2a4c5</id>
<content type='text'>
Since 0.9, @lang syntax is still available as fallback but will soon be deprecated.
Because of that, new syntax should be adopted once 0.9 becomes the
baseline requirements for nvim-treesitter

- update health check
- update doc
</content>
</entry>
<entry>
<title>use indent.X syntax for captures and properties of set directives</title>
<updated>2023-03-24T17:07:53Z</updated>
<author>
<name>George Harker</name>
<email>george@george-graphics.co.uk</email>
</author>
<published>2023-03-20T21:44:39Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=cb568af5393241e5dbc9c19157c5df5e9ca9af2d'/>
<id>urn:sha1:cb568af5393241e5dbc9c19157c5df5e9ca9af2d</id>
<content type='text'>
update CONTRIBUTING.md

adjust indents for bass

fix doc capture comment
</content>
</entry>
<entry>
<title>feat(vue): add tsx/jsx injection queries (#4550)</title>
<updated>2023-03-24T14:38:19Z</updated>
<author>
<name>Lucario387</name>
<email>hoangtun0810@gmail.com</email>
</author>
<published>2023-03-24T14:38:19Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=c7b9f68d0385274b4aa83671e6dcb02f301f9357'/>
<id>urn:sha1:c7b9f68d0385274b4aa83671e6dcb02f301f9357</id>
<content type='text'>
* feat(vue): add tsx/jsx injection queries

- add a test

- style: format vue/injections.scm</content>
</entry>
<entry>
<title>indents(vue): Update dedent logic for &lt;template&gt;</title>
<updated>2023-03-06T23:11:46Z</updated>
<author>
<name>Pham Huy Hoang</name>
<email>hoangtun0810@gmail.com</email>
</author>
<published>2023-03-06T16:09:24Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=94f9a569736fea4c4128216800612a733e59b083'/>
<id>urn:sha1:94f9a569736fea4c4128216800612a733e59b083</id>
<content type='text'>
</content>
</entry>
<entry>
<title>indents(vue): fix indents on new line after &lt;template&gt;</title>
<updated>2023-03-06T07:32:45Z</updated>
<author>
<name>Pham Huy Hoang</name>
<email>hoangtun0810@gmail.com</email>
</author>
<published>2023-03-06T02:56:25Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=5ac39d10cc8a28f7bdb3725f3ee84a132ba783a8'/>
<id>urn:sha1:5ac39d10cc8a28f7bdb3725f3ee84a132ba783a8</id>
<content type='text'>
</content>
</entry>
<entry>
<title>refactor(vue, html): Update injections</title>
<updated>2023-01-03T11:05:10Z</updated>
<author>
<name>Lucario387</name>
<email>hoangtun0810@gmail.com</email>
</author>
<published>2023-01-01T17:38:54Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=6f4b9b190baaa4c10d8e60108ceb61b486f6e1a3'/>
<id>urn:sha1:6f4b9b190baaa4c10d8e60108ceb61b486f6e1a3</id>
<content type='text'>
Update html_tags injections so that html/vue/svelte parsers can use
it without having a script/style tag being captured twice

Signed-off-by: Pham Huy Hoang &lt;hoangtun0810@gmail.com&gt;
</content>
</entry>
<entry>
<title>Fix(vue): Invalid match queries</title>
<updated>2022-12-25T16:43:25Z</updated>
<author>
<name>Lucario387</name>
<email>hoangtun0810@gmail.com</email>
</author>
<published>2022-12-25T15:38:57Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=f5d517f4a71e2570d1d63e7432471972a6b5418e'/>
<id>urn:sha1:f5d517f4a71e2570d1d63e7432471972a6b5418e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fix(vue): Invalid match queries</title>
<updated>2022-12-25T16:43:25Z</updated>
<author>
<name>Lucario387</name>
<email>hoangtun0810@gmail.com</email>
</author>
<published>2022-12-25T15:38:57Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=8abb563ca989569fd6778a86bb994291bd342cfc'/>
<id>urn:sha1:8abb563ca989569fd6778a86bb994291bd342cfc</id>
<content type='text'>
</content>
</entry>
<entry>
<title>injections(vue): Update injection queries</title>
<updated>2022-12-25T13:58:33Z</updated>
<author>
<name>Lucario387</name>
<email>hoangtun0810@gmail.com</email>
</author>
<published>2022-12-23T16:59:30Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=4547a3687c21be5dea6750cccf63f76883f412d9'/>
<id>urn:sha1:4547a3687c21be5dea6750cccf63f76883f412d9</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fix vue injection queries</title>
<updated>2022-12-22T16:43:44Z</updated>
<author>
<name>Lucario387</name>
<email>hoangtun0810@gmail.com</email>
</author>
<published>2022-12-17T03:27:14Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=eaeedfb80419e8145760d95d1840996a2746af7c'/>
<id>urn:sha1:eaeedfb80419e8145760d95d1840996a2746af7c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>highlights(vue): improve vue highlights</title>
<updated>2022-01-12T11:10:07Z</updated>
<author>
<name>Michael Chris Lopez</name>
<email>hello@michaelchris.space</email>
</author>
<published>2021-12-18T07:31:09Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=1f8ef8fe52fb8aff0b8ef68e13399d0fd8df2278'/>
<id>urn:sha1:1f8ef8fe52fb8aff0b8ef68e13399d0fd8df2278</id>
<content type='text'>
- remove template_name and element and make more specific targeting
</content>
</entry>
<entry>
<title>Fix pug injection</title>
<updated>2021-11-30T22:40:49Z</updated>
<author>
<name>Stephan Seitz</name>
<email>stephan.seitz@fau.de</email>
</author>
<published>2021-11-30T22:27:08Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=675ecbb0bd676a4e0e9e2ab89fc85825f08759a4'/>
<id>urn:sha1:675ecbb0bd676a4e0e9e2ab89fc85825f08759a4</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Feat: Added Pug parser with inital queries</title>
<updated>2021-11-30T22:40:49Z</updated>
<author>
<name>Stefan Wienert</name>
<email>info@stefanwienert.de</email>
</author>
<published>2021-07-10T15:36:49Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=dec2ba27a8a64ac2e3e65d961561893052e36782'/>
<id>urn:sha1:dec2ba27a8a64ac2e3e65d961561893052e36782</id>
<content type='text'>
</content>
</entry>
<entry>
<title>fix(vue.indents): add support for template_element</title>
<updated>2021-11-12T02:00:33Z</updated>
<author>
<name>Cyril Mizzi</name>
<email>cyril@lesiteimmo.com</email>
</author>
<published>2021-11-10T17:25:57Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=94fa0d3189ff8c76b43b83867aaa744f3ac86c35'/>
<id>urn:sha1:94fa0d3189ff8c76b43b83867aaa744f3ac86c35</id>
<content type='text'>
</content>
</entry>
<entry>
<title>fix: define indents.scm for html_tags and inherits html and vue from this file</title>
<updated>2021-11-12T02:00:33Z</updated>
<author>
<name>Cyril Mizzi</name>
<email>cyril@lesiteimmo.com</email>
</author>
<published>2021-11-10T17:25:19Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=8d6c2b00448304e6f831e6dcd803395a16a77859'/>
<id>urn:sha1:8d6c2b00448304e6f831e6dcd803395a16a77859</id>
<content type='text'>
</content>
</entry>
<entry>
<title>feat(vue): add indents.scm file</title>
<updated>2021-11-12T02:00:33Z</updated>
<author>
<name>Cyril Mizzi</name>
<email>cmizzi@users.noreply.github.com</email>
</author>
<published>2021-11-10T10:35:08Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=ce866ecc2ff404085e07f256a65e203a8d85dcda'/>
<id>urn:sha1:ce866ecc2ff404085e07f256a65e203a8d85dcda</id>
<content type='text'>
There's no indentation file for Vue. This implementation is based on the HTML indentation file with a minor support for the `template_element` tag. As JS is bind with the JS Tree-sitter, the indentation is already fine.</content>
</entry>
<entry>
<title>Use #any-of? instead of #match? where posible</title>
<updated>2021-06-24T22:22:48Z</updated>
<author>
<name>Joakker</name>
<email>joaquinandresleon108@gmail.com</email>
</author>
<published>2021-06-24T18:45:31Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=c699cc2e47fe302e9f414356cceb20a309be5bc6'/>
<id>urn:sha1:c699cc2e47fe302e9f414356cceb20a309be5bc6</id>
<content type='text'>
</content>
</entry>
<entry>
<title>refactor: make html-like languages inherit from single query</title>
<updated>2021-05-17T21:38:14Z</updated>
<author>
<name>elianiva</name>
<email>dicha.arkana03@gmail.com</email>
</author>
<published>2021-05-05T09:40:36Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=5d2faa0466eea5c656cb9885aef68327976fa7ea'/>
<id>urn:sha1:5d2faa0466eea5c656cb9885aef68327976fa7ea</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Revert "Comment: use `@combined` to create just one tree per buffer (#1252)"</title>
<updated>2021-05-07T14:51:57Z</updated>
<author>
<name>Santos Gallegos</name>
<email>stsewd@protonmail.com</email>
</author>
<published>2021-04-30T18:22:12Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=67f08570152792c6a4f0815e71a0093ad97f2725'/>
<id>urn:sha1:67f08570152792c6a4f0815e71a0093ad97f2725</id>
<content type='text'>
This reverts commit 4a7a713c527f57c355bc817f16fc6d955b8cce9b.
</content>
</entry>
<entry>
<title>Comment: use `@combined` to create just one tree per buffer (#1252)</title>
<updated>2021-04-28T12:19:07Z</updated>
<author>
<name>Santos Gallegos</name>
<email>stsewd@protonmail.com</email>
</author>
<published>2021-04-28T12:19:07Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=4a7a713c527f57c355bc817f16fc6d955b8cce9b'/>
<id>urn:sha1:4a7a713c527f57c355bc817f16fc6d955b8cce9b</id>
<content type='text'>
* Comment: use `@combined` to create just one tree per buffer

There is no need to create a tree per line/block for comments.
Should fix https://github.com/nvim-treesitter/nvim-treesitter/issues/1251

* Add injections for scss

* Fix jsonc

* Combine jsdoc</content>
</entry>
<entry>
<title>Highlight v-bind using javascript</title>
<updated>2021-04-22T19:24:12Z</updated>
<author>
<name>Artur Tagisow</name>
<email>artur.tagisow@billennium.com</email>
</author>
<published>2021-04-22T16:52:20Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=e8e8c0f0f21ef5089bb305ded8ed81a16902baa7'/>
<id>urn:sha1:e8e8c0f0f21ef5089bb305ded8ed81a16902baa7</id>
<content type='text'>
</content>
</entry>
<entry>
<title>feat: add scss injection for svelte/vue</title>
<updated>2021-04-08T20:50:41Z</updated>
<author>
<name>elianiva</name>
<email>dicha.arkana03@gmail.com</email>
</author>
<published>2021-03-28T23:30:31Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=ffbf8f19a463a3c46e0bec6c1111b14d517c3126'/>
<id>urn:sha1:ffbf8f19a463a3c46e0bec6c1111b14d517c3126</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add comment parser to highlight comment tags (#893)</title>
<updated>2021-03-12T16:21:46Z</updated>
<author>
<name>Santos Gallegos</name>
<email>stsewd@protonmail.com</email>
</author>
<published>2021-03-12T16:21:46Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=e4083fc8e11e6585f53d62eb71778cc2af464fad'/>
<id>urn:sha1:e4083fc8e11e6585f53d62eb71778cc2af464fad</id>
<content type='text'>
Closes #236</content>
</entry>
<entry>
<title>Add support for folding Vue files</title>
<updated>2021-02-17T13:43:32Z</updated>
<author>
<name>Hugo Osvaldo Barrera</name>
<email>hugo@barrera.io</email>
</author>
<published>2021-02-08T21:04:49Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=4847f5a5a70546eddbd1a250f06073d782a3d74a'/>
<id>urn:sha1:4847f5a5a70546eddbd1a250f06073d782a3d74a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add support for Vue files</title>
<updated>2021-02-17T13:43:32Z</updated>
<author>
<name>Hugo Osvaldo Barrera</name>
<email>hugo@barrera.io</email>
</author>
<published>2021-02-08T17:48:14Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-treesitter/commit/?id=ff7ec08a1e90a38c955a17c51afb3046ee98e608'/>
<id>urn:sha1:ff7ec08a1e90a38c955a17c51afb3046ee98e608</id>
<content type='text'>
I haven't included parsing the `style` tag, since the only applicable
queries we have are CSS (which actually works fine for SCSS too).
</content>
</entry>
</feed>
