├── .github └── workflows │ ├── luarocks.yml │ ├── release-please.yml │ ├── tests.yml │ └── tree-sitter-norg-meta.rockspec.template ├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE ├── README.md ├── binding.gyp ├── bindings ├── node │ ├── binding.cc │ └── index.js └── rust │ ├── build.rs │ └── lib.rs ├── default.nix ├── flake.lock ├── flake.nix ├── grammar.js ├── package.json ├── queries └── highlights.scm ├── src ├── grammar.json ├── node-types.json ├── parser.c └── tree_sitter │ └── parser.h └── test └── corpus └── document.meta.txt /.github/workflows/luarocks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvim-neorg/tree-sitter-norg-meta/HEAD/.github/workflows/luarocks.yml -------------------------------------------------------------------------------- /.github/workflows/release-please.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvim-neorg/tree-sitter-norg-meta/HEAD/.github/workflows/release-please.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvim-neorg/tree-sitter-norg-meta/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.github/workflows/tree-sitter-norg-meta.rockspec.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvim-neorg/tree-sitter-norg-meta/HEAD/.github/workflows/tree-sitter-norg-meta.rockspec.template -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvim-neorg/tree-sitter-norg-meta/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvim-neorg/tree-sitter-norg-meta/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvim-neorg/tree-sitter-norg-meta/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvim-neorg/tree-sitter-norg-meta/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvim-neorg/tree-sitter-norg-meta/HEAD/README.md -------------------------------------------------------------------------------- /binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvim-neorg/tree-sitter-norg-meta/HEAD/binding.gyp -------------------------------------------------------------------------------- /bindings/node/binding.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvim-neorg/tree-sitter-norg-meta/HEAD/bindings/node/binding.cc -------------------------------------------------------------------------------- /bindings/node/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvim-neorg/tree-sitter-norg-meta/HEAD/bindings/node/index.js -------------------------------------------------------------------------------- /bindings/rust/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvim-neorg/tree-sitter-norg-meta/HEAD/bindings/rust/build.rs -------------------------------------------------------------------------------- /bindings/rust/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvim-neorg/tree-sitter-norg-meta/HEAD/bindings/rust/lib.rs -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvim-neorg/tree-sitter-norg-meta/HEAD/default.nix -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvim-neorg/tree-sitter-norg-meta/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvim-neorg/tree-sitter-norg-meta/HEAD/flake.nix -------------------------------------------------------------------------------- /grammar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvim-neorg/tree-sitter-norg-meta/HEAD/grammar.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvim-neorg/tree-sitter-norg-meta/HEAD/package.json -------------------------------------------------------------------------------- /queries/highlights.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvim-neorg/tree-sitter-norg-meta/HEAD/queries/highlights.scm -------------------------------------------------------------------------------- /src/grammar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvim-neorg/tree-sitter-norg-meta/HEAD/src/grammar.json -------------------------------------------------------------------------------- /src/node-types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvim-neorg/tree-sitter-norg-meta/HEAD/src/node-types.json -------------------------------------------------------------------------------- /src/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvim-neorg/tree-sitter-norg-meta/HEAD/src/parser.c -------------------------------------------------------------------------------- /src/tree_sitter/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvim-neorg/tree-sitter-norg-meta/HEAD/src/tree_sitter/parser.h -------------------------------------------------------------------------------- /test/corpus/document.meta.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvim-neorg/tree-sitter-norg-meta/HEAD/test/corpus/document.meta.txt --------------------------------------------------------------------------------