jsonnet-bundler/vendor/github.com/alecthomas/template
2022-06-22 16:25:58 +02:00
..
parse Vendor dependencies with dep and commit vendor/ 2018-04-28 16:12:36 +02:00
doc.go Vendor dependencies with dep and commit vendor/ 2018-04-28 16:12:36 +02:00
exec.go Vendor dependencies with dep and commit vendor/ 2018-04-28 16:12:36 +02:00
funcs.go Vendor dependencies with dep and commit vendor/ 2018-04-28 16:12:36 +02:00
go.mod Update Go dependencies 2022-06-22 16:25:58 +02:00
helper.go Vendor dependencies with dep and commit vendor/ 2018-04-28 16:12:36 +02:00
LICENSE Vendor dependencies with dep and commit vendor/ 2018-04-28 16:12:36 +02:00
README.md Use Drone as the CI with a working pipeline (#28) 2019-04-23 14:26:40 +02:00
template.go Vendor dependencies with dep and commit vendor/ 2018-04-28 16:12:36 +02:00

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