From 1bcdd79088f9ecca42090f41dd77c1a9b35578ff Mon Sep 17 00:00:00 2001 From: Tim Culverhouse Date: Mon, 9 Sep 2024 09:50:54 -0500 Subject: feat(superhtml): add superhtml parser and queries SuperHTML is a templating language used by the zine static site generator. --- lua/nvim-treesitter/parsers.lua | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'lua') diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index 877635967..b5853c04f 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -2109,6 +2109,18 @@ list.supercollider = { maintainers = { "@madskjeldgaard" }, } +list.superhtml = { + install_info = { + url = "https://github.com/kristoff-it/superhtml", + files = { + "src/parser.c", + "src/scanner.c", + }, + location = "tree-sitter-superhtml", + }, + maintainers = { "@rockorager" }, +} + list.surface = { install_info = { url = "https://github.com/connorlay/tree-sitter-surface",