1
0
mirror of https://github.com/Luzifer/korvike.git synced 2024-09-19 00:42:57 +00:00
korvike/README.md

53 lines
1.9 KiB
Markdown
Raw Permalink Normal View History

![](https://badges.fyi/github/license/Luzifer/korvike)
![](https://badges.fyi/github/downloads/Luzifer/korvike)
![](https://badges.fyi/github/latest-release/Luzifer/korvike)
2016-07-31 20:17:50 +00:00
2016-07-31 19:19:17 +00:00
# Luzifer / korvike
2024-02-29 17:05:49 +00:00
`korvike` is the Finnish translation to the word "replacer" and that is what it does: It takes a Go template and executes it.
2016-07-31 19:19:17 +00:00
## Available functions
Starting with `v1.0.0` Korvike is based on the [sprig functions collection](https://masterminds.github.io/sprig/) with some additions:
- `{{ .<variable name> }}`
Take key-value pairs from the CLI and replace them inside the template
```console
$ echo "{{ .foo }}" | korvike -v foo=bar
bar
```
- `{{ file <file name> }}` / `{{ mustFile <file name> }}`
Read a file and place it inside the template, `file` returns an empty string on error, `mustFile` an error
```console
$ echo "Hello World" > hello
$ echo '{{ file "hello" }}' | korvike
Hello World
```
- `{{ markdown <source> }}`
Format the source using a markdown parser
```console
$ echo '{{ markdown "# headline" }}' | korvike
<h1>headline</h1>
```
- `{{ tplexec (file "my.tpl") }}`
Execute the given template with the same function set and variables as the parent template.
```console
$ export FOO=bar
$ echo '{{ env "FOO" }}' >my.tpl
$ echo '{{ tplexec (file "my.tpl") }}' | korvike
bar
```
- `{{ urlescape <input string> }}`
Do an URL escape to use the input string inside an query parameter in an URL
```console
$ echo '{{ urlescape "Hellö Wörld@Golang" }}' | korvike
Hell%C3%B6+W%C3%B6rld%40Golang
```
- `{{ vault <path> <key> }}` / `{{ mustVault <path> <key> }}`
Read a key from Vault using `VAULT_ADDR` and `VAULT_TOKEN` environment variables (or `~/.vault-token` file) for authentication. `vault` returns an empty string on error, `mustVault` an error
```console
$ vault write secret/test foo=bar
$ echo '{{ vault "secret/test" "foo" }}' | korvike
bar
```