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

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