An open API service indexing awesome lists of open source software.

https://github.com/alecthomas/template

Fork of Go's text/template adding newline elision
https://github.com/alecthomas/template

Last synced: over 1 year ago
JSON representation

Fork of Go's text/template adding newline elision

Awesome Lists containing this project

README

          

# Go's `text/template` package with newline elision

This is a fork of Go 1.4's [text/template](http://golang.org/pkg/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
```