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

tree-sitter-jinja2

jinja2 grammar for the tree-sitter parsing library

10 releases

0.0.12 Mar 15, 2025
0.0.11 Mar 15, 2025
0.0.10 Aug 29, 2024
0.0.8 Jun 26, 2024
0.0.5 Dec 28, 2023

#1005 in Parser implementations

Download history 160/week @ 2025-02-04 175/week @ 2025-02-11 132/week @ 2025-02-18 156/week @ 2025-02-25 155/week @ 2025-03-04 602/week @ 2025-03-11 442/week @ 2025-03-18 339/week @ 2025-03-25 277/week @ 2025-04-01 265/week @ 2025-04-08 230/week @ 2025-04-15 174/week @ 2025-04-22 207/week @ 2025-04-29 245/week @ 2025-05-06 218/week @ 2025-05-13 211/week @ 2025-05-20

910 downloads per month
Used in 2 crates

MIT license

79KB
2.5K SLoC

C 2.5K SLoC Rust 31 SLoC // 0.5% comments JavaScript 28 SLoC // 0.3% comments Scheme 7 SLoC

tree-sitter-jinja2

Really basic parser for really basic highlighting.

npm install
tree-sitter generate && tree-sitter parse example-file.jinja2

lib.rs:

This crate provides Jinja2 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();
let language = tree_sitter_jinja2::LANGUAGE;
parser
    .set_language(&language.into())
    .expect("Error loading Jinja2 parser");
let tree = parser.parse(code, None).unwrap();
assert!(!tree.root_node().has_error());

Dependencies

~4–280KB