2015-09-10 11:29:35 -07:00
# tree-sitter
2014-02-19 09:28:31 -08:00
docs: update badges; fix markdown lint complains
Linter config `.vscode/settings.json`:
```json
{
"[markdown]": {
"files.trimTrailingWhitespace": false,
},
"markdownlint.config": {
"default": true,
// "ul-style": {
// "style": "asterisk"
// },
"MD001": false,
"MD024": false,
"MD025": false,
"MD033": false,
"MD041": false,
"MD053": false,
},
}
```
2023-04-16 21:14:19 +03:00
[![CICD badge]][CICD]
2021-03-18 12:16:03 -07:00
[](https://zenodo.org/badge/latestdoi/14164618)
2014-03-09 12:19:04 -07:00
docs: update badges; fix markdown lint complains
Linter config `.vscode/settings.json`:
```json
{
"[markdown]": {
"files.trimTrailingWhitespace": false,
},
"markdownlint.config": {
"default": true,
// "ul-style": {
// "style": "asterisk"
// },
"MD001": false,
"MD024": false,
"MD025": false,
"MD033": false,
"MD041": false,
"MD053": false,
},
}
```
2023-04-16 21:14:19 +03:00
[CICD badge]: https://github.com/tree-sitter/tree-sitter/actions/workflows/CICD.yml/badge.svg
[CICD]: https://github.com/tree-sitter/tree-sitter/actions/workflows/CICD.yml
2018-07-10 14:09:22 -07:00
Tree-sitter is a parser generator tool and an incremental parsing library. It can build a concrete syntax tree for a source file and efficiently update the syntax tree as the source file is edited. Tree-sitter aims to be:
2015-09-10 11:29:35 -07:00
2020-05-12 16:16:48 -07:00
- **General** enough to parse any programming language
- **Fast** enough to parse on every keystroke in a text editor
- **Robust** enough to provide useful results even in the presence of syntax errors
- **Dependency-free** so that the runtime library (which is written in pure C) can be embedded in any application
2015-09-10 11:29:35 -07:00
2020-05-12 16:16:48 -07:00
## Links
- [Documentation ](https://tree-sitter.github.io )
- [Rust binding ](lib/binding_rust/README.md )
- [WASM binding ](lib/binding_web/README.md )
- [Command-line interface ](cli/README.md )