blob: 47c9c20dedebed6880b9b26dc309f65ae5495bbc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
tmpl
====
A simple key-value templator.
usage
-----
tmpl is key-value templator based on the C preprocessor. Variables are defined
via line-based conditional and assignment directives, and substituted
in-line for sequences matching #{NAME}.
The following directives are supported:
#ifeq, #ifdef, #else, #endif, #define, #default
Templated values are read from the environment, the commandline (via -D)
or from a configuration file (provided with -C) in KEY=VALUE format.
|