From fbf356afdf56177bfe153a274ba608768e9b61a3 Mon Sep 17 00:00:00 2001 From: Matthias Lienau Date: Tue, 31 Jan 2017 13:21:20 +0100 Subject: [PATCH 1/2] Minor formatting corrections (options list paragraphs). --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index fd22df8..5b20251 100644 --- a/README.md +++ b/README.md @@ -163,7 +163,7 @@ Default value: `false` Set to `true` when using ImageMagick instead of GraphicsMagick. -### options.background +#### options.background Type: `String` Possible values: `none` to keep transparency, `beige` to set beige background, `#888` for gray. @@ -171,14 +171,14 @@ Possible values: `none` to keep transparency, `beige` to set beige background, ` Define background color (default is white), for example when converting SVG images to PNGs. See [gm background documentation](http://www.graphicsmagick.org/GraphicsMagick.html#details-background) -### options.flatten +#### options.flatten Type: `Boolean` Default value: `false` Combines image layers into one. Can be used for layered formats such as PNG. See [gm flatten documentation](http://www.graphicsmagick.org/GraphicsMagick.html#details-flatten). -### options.percentage +#### options.percentage Type: `Number` Default value: `null` @@ -228,7 +228,7 @@ gulp.task("parallel", function () { imageResize({ width : 100 }), os.cpus().length )) - .pipe(gulp.dest("dist")); + .pipe(gulp.dest("dist"));˘ }); ``` From 7ce67161a7995983941770bd411115dbd79bd930 Mon Sep 17 00:00:00 2001 From: Matthias Lienau Date: Tue, 31 Jan 2017 13:26:07 +0100 Subject: [PATCH 2/2] Minor: Removed unintentionally added char. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5b20251..fa1e2bb 100644 --- a/README.md +++ b/README.md @@ -228,7 +228,7 @@ gulp.task("parallel", function () { imageResize({ width : 100 }), os.cpus().length )) - .pipe(gulp.dest("dist"));˘ + .pipe(gulp.dest("dist")); }); ```