#parser #tree-sitter #incremental #jinja-inline

tree-sitter-jinja-inline

JinjaInline grammar for tree-sitter

1 unstable release

0.0.1 Aug 21, 2024

#209 in #incremental

29 downloads per month

Apache-2.0

515KB
23K SLoC

C 23K SLoC Rust 29 SLoC // 0.3% comments JavaScript 22 SLoC

tree-sitter-jinja2

Jinja2 grammar for tree-sitter.

inline statement starts with # .


lib.rs:

This crate provides JinjaInline language support for the tree-sitter parsing library.

Typically, you will use the language function to add this language to a tree-sitter Parser, and then use the parser to parse some code:

let code = r#"
"#;
let mut parser = tree_sitter::Parser::new();
parser.set_language(&tree_sitter_jinja_inline::language()).expect("Error loading JinjaInline grammar");
let tree = parser.parse(code, None).unwrap();
assert!(!tree.root_node().has_error());

Dependencies

~2.8–4MB
~76K SLoC