jason 075d766964 first hace 3 años
..
parse 075d766964 first hace 3 años
testdata 075d766964 first hace 3 años
LICENSE 075d766964 first hace 3 años
README.md 075d766964 first hace 3 años
doc.go 075d766964 first hace 3 años
example_test.go 075d766964 first hace 3 años
examplefiles_test.go 075d766964 first hace 3 años
examplefunc_test.go 075d766964 first hace 3 años
exec.go 075d766964 first hace 3 años
exec_test.go 075d766964 first hace 3 años
funcs.go 075d766964 first hace 3 años
go.mod 075d766964 first hace 3 años
helper.go 075d766964 first hace 3 años
multi_test.go 075d766964 first hace 3 años
template.go 075d766964 first hace 3 años

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