jason 075d766964 first | před 3 roky | |
---|---|---|
.. | ||
parse | před 3 roky | |
testdata | před 3 roky | |
LICENSE | před 3 roky | |
README.md | před 3 roky | |
doc.go | před 3 roky | |
example_test.go | před 3 roky | |
examplefiles_test.go | před 3 roky | |
examplefunc_test.go | před 3 roky | |
exec.go | před 3 roky | |
exec_test.go | před 3 roky | |
funcs.go | před 3 roky | |
go.mod | před 3 roky | |
helper.go | před 3 roky | |
multi_test.go | před 3 roky | |
template.go | před 3 roky |
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