rubble-templates-evaluators 0.2.1

A set of parsers, evaluators and compilers for text templates.
Documentation

rubble-templates-evaluators

A set of parsers, evaluators and compilers for text templates. Part of rubble-templates library.

What is this?

This is a part of a template engine. This engine allows compiling text templates into output text using variable substitution or code evaluation.

This particular crate contains parsers, evaluator and compiler implementations. To read more about it, refer to main rubble-templates README or the documentation.

Available evaluators and compilers

  • Default template schema (as in the main README):
    • simple - basic implementation:
      • Template - represents a template to parse,
      • SimpleEvaluationEngine - a basic evaluator that allows to use custom functions and variables,
      • TemplateCompiler - a default compiler that can be used with above structs.