@@ -160,16 +160,18 @@ Passing the `-a | --escape` flag allows escaping the content.
160160
161161## Usage
162162
163- tera-cli 0.1.3
163+ tera-cli 0.2.0
164+
164165 chevdor <chevdor@gmail.com>
166+
165167 Command line utility for the tera templating engine. You need to provide a template using the tera
166168 syntax as well as some data (various format are supported)
167169
168170 USAGE:
169- tera [FLAGS] [OPTIONS] --template <template > [context ]
171+ tera [FLAGS] [OPTIONS] --template <TEMPLATE > [CONTEXT ]
170172
171173 ARGS:
172- <context > Location of the context data. This file can be of the following type: json |
174+ <CONTEXT > Location of the context data. This file can be of the following type: json |
173175 toml | yaml. If you prefer to pass the data as stdin, use `--stdin`
174176
175177 FLAGS:
@@ -183,21 +185,24 @@ Passing the `-a | --escape` flag allows escaping the content.
183185 option. This will prevent an error about no context being passed to
184186 be raised
185187 --fail-on-collision if you prefer your data to override the ENV
186- -h, --help Prints help information
188+ -h, --help Print help information
187189 -i, --include This flag tells the command to parse all templates found in the same
188190 path where the given template is located [aliases: inherit]
189191 -s, --stdin The context data can be passed using stdin
190- -V, --version Prints version information
192+ -V, --version Print version information
191193
192194 OPTIONS:
193- --env-key <env-key >
195+ --env-key <ENV_KEY >
194196 By default, if --env is set, the environment variables will be attached at the root of
195197 the context. This is convenient but may end up conflicting with your data. To prevent
196198 collisions, you can provide a custom key with this option
197199
198- --include-path <include-path >
200+ --include-path <INCLUDE_PATH >
199201 Option to define a different path from which search and parse templates [aliases:
200202 inherit-path]
201203
202- -o, --out <out> Optional output file. If not passed, using stdout
203- -t, --template <template> Location of the template
204+ -o, --out <OUT>
205+ Optional output file. If not passed, using stdout
206+
207+ -t, --template <TEMPLATE>
208+ Location of the template
0 commit comments