jason 075d766964 first před 3 roky
..
parse 075d766964 first před 3 roky
testdata 075d766964 first před 3 roky
LICENSE 075d766964 first před 3 roky
README.md 075d766964 first před 3 roky
doc.go 075d766964 first před 3 roky
example_test.go 075d766964 first před 3 roky
examplefiles_test.go 075d766964 first před 3 roky
examplefunc_test.go 075d766964 first před 3 roky
exec.go 075d766964 first před 3 roky
exec_test.go 075d766964 first před 3 roky
funcs.go 075d766964 first před 3 roky
go.mod 075d766964 first před 3 roky
helper.go 075d766964 first před 3 roky
multi_test.go 075d766964 first před 3 roky
template.go 075d766964 first před 3 roky

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