vikunja/vendor/github.com/alecthomas/template
kolaente 6120db5068
continuous-integration/drone/pr Build is failing Details
Updated swaggo version
2019-10-14 00:26:32 +02:00
..
parse Migrate to new swagger docs generation (#18) 2018-11-12 15:46:35 +00:00
LICENSE Migrate to new swagger docs generation (#18) 2018-11-12 15:46:35 +00:00
README.md Migrate to new swagger docs generation (#18) 2018-11-12 15:46:35 +00:00
doc.go Migrate to new swagger docs generation (#18) 2018-11-12 15:46:35 +00:00
exec.go Migrate to new swagger docs generation (#18) 2018-11-12 15:46:35 +00:00
funcs.go Migrate to new swagger docs generation (#18) 2018-11-12 15:46:35 +00:00
go.mod Updated swaggo version 2019-10-14 00:26:32 +02:00
helper.go Migrate to new swagger docs generation (#18) 2018-11-12 15:46:35 +00:00
template.go Migrate to new swagger docs generation (#18) 2018-11-12 15:46:35 +00: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