alecthomas/template

Fork of Go's text/template adding newline elision

56

stars

11

commits

Go

primary language

Dec 2, 2023

updated

README

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

Contributors

alecthomas

9 commits

douglaswth

1 commits

zenazn

1 commits

alecthomas/template

Fork of Go's text/template adding newline elision

56

stars

11

commits

Go

primary language

Dec 2, 2023

updated

README

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

Contributors

alecthomas

9 commits

douglaswth

1 commits

zenazn

1 commits

Languages

Go

100.0%