jason 075d766964 first 3 vuotta sitten
..
parse 075d766964 first 3 vuotta sitten
testdata 075d766964 first 3 vuotta sitten
LICENSE 075d766964 first 3 vuotta sitten
README.md 075d766964 first 3 vuotta sitten
doc.go 075d766964 first 3 vuotta sitten
example_test.go 075d766964 first 3 vuotta sitten
examplefiles_test.go 075d766964 first 3 vuotta sitten
examplefunc_test.go 075d766964 first 3 vuotta sitten
exec.go 075d766964 first 3 vuotta sitten
exec_test.go 075d766964 first 3 vuotta sitten
funcs.go 075d766964 first 3 vuotta sitten
go.mod 075d766964 first 3 vuotta sitten
helper.go 075d766964 first 3 vuotta sitten
multi_test.go 075d766964 first 3 vuotta sitten
template.go 075d766964 first 3 vuotta sitten

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