diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2018-01-10 15:58:18 -0500 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-01-11 12:39:06 +0000 |
commit | dd0d35deb098b63f8c5be7ef9d8d63c16760221b (patch) | |
tree | 695d44a49d636e45e4121c9aecfb3d8c0e1cca06 /vendor/github.com/renstrom/dedent/README.md | |
parent | e6be800ec633342aef656e0a2ed0bdc4519796d9 (diff) | |
download | podman-dd0d35deb098b63f8c5be7ef9d8d63c16760221b.tar.gz podman-dd0d35deb098b63f8c5be7ef9d8d63c16760221b.tar.bz2 podman-dd0d35deb098b63f8c5be7ef9d8d63c16760221b.zip |
Add support for shm-size.
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Closes: #206
Approved by: TomSweeneyRedHat
Diffstat (limited to 'vendor/github.com/renstrom/dedent/README.md')
-rw-r--r-- | vendor/github.com/renstrom/dedent/README.md | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/vendor/github.com/renstrom/dedent/README.md b/vendor/github.com/renstrom/dedent/README.md deleted file mode 100644 index 35b5aa134..000000000 --- a/vendor/github.com/renstrom/dedent/README.md +++ /dev/null @@ -1,50 +0,0 @@ -# Dedent - -[![Build Status](https://travis-ci.org/renstrom/dedent.svg?branch=master)](https://travis-ci.org/renstrom/dedent) -[![Godoc](https://img.shields.io/badge/godoc-reference-blue.svg?style=flat)](https://godoc.org/github.com/renstrom/dedent) - -Removes common leading whitespace from multiline strings. Inspired by [`textwrap.dedent`](https://docs.python.org/3/library/textwrap.html#textwrap.dedent) in Python. - -## Usage / example - -Imagine the following snippet that prints a multiline string. You want the indentation to both look nice in the code as well as in the actual output. - -```go -package main - -import ( - "fmt" - - "github.com/renstrom/dedent" -) - -func main() { - s := `Lorem ipsum dolor sit amet, - consectetur adipiscing elit. - Curabitur justo tellus, facilisis nec efficitur dictum, - fermentum vitae ligula. Sed eu convallis sapien.` - fmt.Println(dedent.Dedent(s)) - fmt.Println("-------------") - fmt.Println(s) -} -``` - -To illustrate the difference, here's the output: - - -```bash -$ go run main.go -Lorem ipsum dolor sit amet, -consectetur adipiscing elit. -Curabitur justo tellus, facilisis nec efficitur dictum, -fermentum vitae ligula. Sed eu convallis sapien. -------------- -Lorem ipsum dolor sit amet, - consectetur adipiscing elit. - Curabitur justo tellus, facilisis nec efficitur dictum, - fermentum vitae ligula. Sed eu convallis sapien. -``` - -## License - -MIT |