jason 075d766964 first | hace 3 años | |
---|---|---|
.. | ||
parse | hace 3 años | |
testdata | hace 3 años | |
LICENSE | hace 3 años | |
README.md | hace 3 años | |
doc.go | hace 3 años | |
example_test.go | hace 3 años | |
examplefiles_test.go | hace 3 años | |
examplefunc_test.go | hace 3 años | |
exec.go | hace 3 años | |
exec_test.go | hace 3 años | |
funcs.go | hace 3 años | |
go.mod | hace 3 años | |
helper.go | hace 3 años | |
multi_test.go | hace 3 años | |
template.go | hace 3 años |
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