From c4222e0981fc0489034b0541f19c598c65034a2c Mon Sep 17 00:00:00 2001
From: Jonathan
Date: Sun, 31 Mar 2019 22:16:35 +0200
Subject: [PATCH] Fix documentation url example (#59)
* Fix documentation url example
One \ was forgotten
* fix: doc
---
build/docs/content/03-url.md | 2 +-
docs/index.html | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/build/docs/content/03-url.md b/build/docs/content/03-url.md
index ee83767f..5f11c399 100644
--- a/build/docs/content/03-url.md
+++ b/build/docs/content/03-url.md
@@ -20,7 +20,7 @@ named `remoteURL` instead. Otherwise, URL conversions work the same as HTML conv
$ curl --request POST \
--url http://localhost:3000/convert/url \
--header 'Content-Type: multipart/form-data' \
- --form remoteURL=https://google.com
+ --form remoteURL=https://google.com \
--form marginTop=0 \
--form marginBottom=0 \
--form marginLeft=0 \
diff --git a/docs/index.html b/docs/index.html
index f45309d2..1593a94a 100755
--- a/docs/index.html
+++ b/docs/index.html
@@ -534,8 +534,8 @@ If not, some of the content of the page might be hidden.
$ curl --request POST \
--url http://localhost:3000/convert/url \
--header 'Content-Type: multipart/form-data' \
- --form remoteURL=https://google.com
- --form marginTop=0 \
+ --form remoteURL=https://google.com \
+ --form marginTop=0 \
--form marginBottom=0 \
--form marginLeft=0 \
--form marginRight=0 \