statsd_exporter/vendor/github.com/alecthomas/template
mhartenbower c710b851c7 Switch to go-kit logging
Fixes #270

Signed-off-by: mhartenbower <matt.hartenbower@gmail.com>
2019-10-13 13:19:28 -05:00
..
parse Update vendor github.com/prometheus/common/... 2017-08-30 17:48:19 +02:00
doc.go Update vendor github.com/prometheus/common/... 2017-08-30 17:48:19 +02:00
exec.go Update vendor github.com/prometheus/common/... 2017-08-30 17:48:19 +02:00
funcs.go Update vendor github.com/prometheus/common/... 2017-08-30 17:48:19 +02:00
go.mod Switch to go-kit logging 2019-10-13 13:19:28 -05:00
helper.go Update vendor github.com/prometheus/common/... 2017-08-30 17:48:19 +02:00
LICENSE Update vendor github.com/prometheus/common/... 2017-08-30 17:48:19 +02:00
README.md Update vendor github.com/prometheus/common/... 2017-08-30 17:48:19 +02:00
template.go Update vendor github.com/prometheus/common/... 2017-08-30 17:48:19 +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