postgres_exporter/vendor/github.com/alecthomas/template
Will Rouesnel 0e4c3ce395 Update all dependencies.
* Switch to using kingpin for CLI interface as upstream Prometheus has moved
  that way too.
2017-10-26 19:27:29 +11:00
..
parse Update all dependencies. 2017-10-26 19:27:29 +11:00
doc.go Update all dependencies. 2017-10-26 19:27:29 +11:00
exec.go Update all dependencies. 2017-10-26 19:27:29 +11:00
funcs.go Update all dependencies. 2017-10-26 19:27:29 +11:00
helper.go Update all dependencies. 2017-10-26 19:27:29 +11:00
LICENSE Update all dependencies. 2017-10-26 19:27:29 +11:00
README.md Update all dependencies. 2017-10-26 19:27:29 +11:00
template.go Update all dependencies. 2017-10-26 19:27:29 +11: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