jinja_minimal library

Classes

Environment
Represents the current environment (scope) at runtime.
Interpreter
Template

Functions

parse(List<Token> tokens) → Program
Generate the Abstract Syntax Tree (AST) from a list of tokens. Operator precedence can be found here: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Operator_precedence#table
tokenize(String source, [PreprocessOptions options = const PreprocessOptions()]) List<Token>
Generate a list of tokens from a source string.