statsd_exporter/vendor/github.com/alecthomas/template
Frank Davidson a455a8ad64 hopefully now linux
Signed-off-by: Frank Davidson <davidfr@americas.manulife.net>
Signed-off-by: Frank Davidson <ffdavidson@gmail.com>
2020-04-08 15:29:54 -04:00
..
parse hopefully now linux 2020-04-08 15:29:54 -04:00
doc.go hopefully now linux 2020-04-08 15:29:54 -04:00
exec.go hopefully now linux 2020-04-08 15:29:54 -04:00
funcs.go hopefully now linux 2020-04-08 15:29:54 -04:00
go.mod hopefully now linux 2020-04-08 15:29:54 -04:00
helper.go hopefully now linux 2020-04-08 15:29:54 -04:00
LICENSE hopefully now linux 2020-04-08 15:29:54 -04:00
README.md hopefully now linux 2020-04-08 15:29:54 -04:00
template.go hopefully now linux 2020-04-08 15:29:54 -04: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