Switch from govendor to dep for dependency management

This commit is contained in:
2018-05-06 14:04:22 +01:00
parent a61b49f860
commit cf03ebb20b
7 changed files with 38 additions and 766 deletions

View File

@@ -1,25 +0,0 @@
# 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
```