che-operator/vendor/github.com/alecthomas/template
Anatolii Bazko a8c155409d
Make che-operator non blocking (#212)
* Make che-operator non-blocking

Signed-off-by: Anatoliy Bazko <abazko@redhat.com>
2020-04-10 17:19:14 +03:00
..
parse Update vendor 2019-03-19 15:59:09 +02:00
LICENSE Update vendor 2019-03-19 15:59:09 +02:00
README.md Make che-operator non blocking (#212) 2020-04-10 17:19:14 +03:00
doc.go Update vendor 2019-03-19 15:59:09 +02:00
exec.go Update vendor 2019-03-19 15:59:09 +02:00
funcs.go Update vendor 2019-03-19 15:59:09 +02:00
helper.go Update vendor 2019-03-19 15:59:09 +02:00
template.go Update vendor 2019-03-19 15:59:09 +02:00

README.md

Go's text/template package with newline elision

This is a fork of Go 1.4's text/template package with one addition: a backslash immediately after a closing delimiter will delete all subsequent newlines until a non-newline.

eg.

{{if true}}\
hello
{{end}}\

Will result in:

hello\n

Rather than:

\n
hello\n
\n