mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-19 11:50:09 -04:00
10 lines
115 B
JavaScript
10 lines
115 B
JavaScript
|
|
html`<p></p>`;
|
||
|
|
// ^ html
|
||
|
|
html(`<p></p>`);
|
||
|
|
// ^ html
|
||
|
|
svg`<p></p>`;
|
||
|
|
// ^ html
|
||
|
|
svg(`<p></p>`);
|
||
|
|
// ^ html
|
||
|
|
|