jason 075d766964 first | há 3 anos atrás | |
---|---|---|
.. | ||
parse | há 3 anos atrás | |
testdata | há 3 anos atrás | |
LICENSE | há 3 anos atrás | |
README.md | há 3 anos atrás | |
doc.go | há 3 anos atrás | |
example_test.go | há 3 anos atrás | |
examplefiles_test.go | há 3 anos atrás | |
examplefunc_test.go | há 3 anos atrás | |
exec.go | há 3 anos atrás | |
exec_test.go | há 3 anos atrás | |
funcs.go | há 3 anos atrás | |
go.mod | há 3 anos atrás | |
helper.go | há 3 anos atrás | |
multi_test.go | há 3 anos atrás | |
template.go | há 3 anos atrás |
text/template
package with newline elisionThis 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