fixing typos in documentation

This commit is contained in:
Julien Neuhart
2018-12-10 19:59:45 +01:00
parent 9ce179f91b
commit 5a28f3597c
6 changed files with 26 additions and 28 deletions

View File

@@ -26,7 +26,7 @@ For instance:
</html>
```
### Guzzle
### cURL
```bash
$ curl --request POST \
@@ -100,7 +100,7 @@ The following classes allow you to inject printing values:
> **Attention:** the CSS properties are independant of the ones used in the `index.html` file.
> Also, `footer.html` CSS properties override the ones from `header.html`.
### Guzzle
### cURL
```bash
$ curl --request POST \
@@ -193,7 +193,7 @@ You may also use *remote* paths for Google fonts, images and so on.
> If you want to install fonts directly in the Gotenberg Docker image,
> see to the [fonts section](#office.fonts).
### Guzzle
### cURL
```bash
$ curl --request POST \
@@ -255,7 +255,7 @@ By default, it will be rendered in `A4` size with `1 inch` margins and `portrait
> Paper size and margins have to be provided in `inches`.
> Also, you have to set both `paperWidth` and `paperHeight`. Same for margins.
### Guzzle
### cURL
```bash
$ curl --request POST \

View File

@@ -28,7 +28,7 @@ For instance:
</html>
```
### Guzzle
### cURL
```bash
$ curl --request POST \

View File

@@ -26,7 +26,7 @@ All files will be merged into a single resulting PDF.
> That's why for Office conversions, the API does only one conversion at a time.
> See the [scalability section](#scalability) to find how to mitigate this issue.
### Guzzle
### cURL
```bash
$ curl --request POST \

View File

@@ -11,7 +11,7 @@ It accepts `POST` requests with a `multipart/form-data` Content-Type.
Nothing special here: you may send one or more PDF files and the API
will merge them and return the resulting PDF file.
### Guzzle
### cURL
```bash
$ curl --request POST \

View File

@@ -7,11 +7,11 @@ All endpoints accept a form field named `webhookURL`.
If provided, the API will send the resulting PDF file in a `POST` request with the `application/pdf` Content-Type
to given URL.
By doing so, your requests to the API will be done before the conversions are actually done!
By doing so, your requests to the API will be over before the conversions are actually done!
## Examples
### Guzzle
### cURL
```bash
$ curl --request POST \
@@ -19,7 +19,6 @@ $ curl --request POST \
--header 'Content-Type: multipart/form-data' \
--form files=@index.html
--form webhookURL='http://myapp.com/webhook/'
> result.pdf
```
### Go