Expand description
Liquid template language interpreter.
Structs§
- Context
- Processing context for a template.
- Context
Builder - Create processing context for a template.
- Interrupt
State - The current interrupt state. The interrupt state is used by
the
break
andcontinue
tags to halt template rendering at a given point and unwind therender
call stack until it reaches an enclosingfor_loop
. At that point the interrupt is cleared, and thefor_loop
carries on processing as directed. - Stack
- Stack of variables.
- Template
- An executable template block.
- Variable
- A
Value
reference.
Enums§
- Expression
- An un-evaluated
Value
. - Interrupt
- Block processing interrupt state.
Traits§
- Partial
Store - Available partial-templates for including.
- Renderable
- Any object (tag/block) that can be rendered by liquid must implement this trait.
- Value
Store - Immutable view into a template’s global variables.