jason 075d766964 first há 3 anos atrás
..
parse 075d766964 first há 3 anos atrás
testdata 075d766964 first há 3 anos atrás
LICENSE 075d766964 first há 3 anos atrás
README.md 075d766964 first há 3 anos atrás
doc.go 075d766964 first há 3 anos atrás
example_test.go 075d766964 first há 3 anos atrás
examplefiles_test.go 075d766964 first há 3 anos atrás
examplefunc_test.go 075d766964 first há 3 anos atrás
exec.go 075d766964 first há 3 anos atrás
exec_test.go 075d766964 first há 3 anos atrás
funcs.go 075d766964 first há 3 anos atrás
go.mod 075d766964 first há 3 anos atrás
helper.go 075d766964 first há 3 anos atrás
multi_test.go 075d766964 first há 3 anos atrás
template.go 075d766964 first há 3 anos atrás

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