Crates.io | rubble-templates-evaluators |
lib.rs | rubble-templates-evaluators |
version | 0.2.1 |
source | src |
created_at | 2021-06-14 18:56:29.433642 |
updated_at | 2021-06-16 18:07:30.242795 |
description | A set of parsers, evaluators and compilers for text templates. |
homepage | https://github.com/multicatch/rubble-rs |
repository | https://github.com/multicatch/rubble-rs |
max_upload_size | |
id | 410061 |
size | 29,964 |
A set of parsers, evaluators and compilers for text templates. Part of rubble-templates library.
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.
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.