Crates.io | texp |
lib.rs | texp |
version | 0.2.5 |
source | src |
created_at | 2024-04-25 10:34:38.682985 |
updated_at | 2024-05-16 13:16:42.73099 |
description | texp is a small tool for render templates |
homepage | |
repository | https://github.com/fixcik/texp |
max_upload_size | |
id | 1220074 |
size | 80,443 |
texp
is a compact tool designed for rendering templates in a syntax reminiscent of Jinja, powered by Tera. It's useful for generating text output based on predefined templates and variable files.
Learn more about template syntax on the Tera Documentation.
sage: texp [OPTIONS] <path>
Arguments:
<path>
Options:
-v, --values <VALUES> Path to yaml file with values
--set <SET> Set value, e.g "--set foo.a=bar --set foo.b=baz"
-o, --output <OUTPUT> Path to output file
-h, --help Print help
-V, --version Print version
Table of Contents:
Below is a simple demonstration of how texp
works. Start by creating two files: one for variables and one for the template.
variables.yaml:
foo: bar
doc.template.html:
<p>{{ foo }}</p>
Running texp with these files as inputs:
texp -v variables.yaml doc.template.html
produces the output:
<p>bar</p>
Also you can set output flag, to save result to file:
texp -v variables.yaml -o doc.html doc.template.html
Download the latest releases from the GitHub release page.
cargo install texp
brew tap fixcik/tap
brew install texp
Generates random string, with given length:
{{ randomString(length=20) }}
Generate jwt token
{{ jwtToken(claims=claims, secret=secret) }}
{{ "text" | base64 }}
renders:
dGV4dA==