From c8013d4982c46e09b09a083b72baee2f5c0d77b0 Mon Sep 17 00:00:00 2001 From: Christopher Speller Date: Wed, 1 Aug 2018 15:38:56 -0700 Subject: Remove accidential dependency (#9203) --- vendor/github.com/alecthomas/template/README.md | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 vendor/github.com/alecthomas/template/README.md (limited to 'vendor/github.com/alecthomas/template/README.md') diff --git a/vendor/github.com/alecthomas/template/README.md b/vendor/github.com/alecthomas/template/README.md deleted file mode 100644 index ef6a8ee30..000000000 --- a/vendor/github.com/alecthomas/template/README.md +++ /dev/null @@ -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 -``` -- cgit v1.2.3-1-g7c22