template-nest-0.2.1 has been yanked.
Table of Contents
TemplateNest
is a template engine module for Rust, designed to process nested
templates quickly and efficiently.
Documentation: https://docs.rs/template-nest/0.1.0/template_nest/
For more details on the idea behind Template::Nest
read:
https://metacpan.org/pod/Template::Nest#DESCRIPTION and
https://pypi.org/project/template-nest/.
The development of this module is sponsored by Tom Gracey (virtual.blue). He
originally authored Template::Nest
in Perl 5.
News
v0.2.0 - 2023-12-06
This release is not backwards compatible, functions new
& render
now return
Result<String, TemplateNestError>
instead of Result<String, String>
.
- Custom error enum.
- Added examples, expanded test suite, improved docs.
- Added support for several options:
fixed_indent
show_labels
comment_delimiters
v0.1.0 - 2023-11-26
- Initial Release.