Actor: Documentation update

Removing the dollar signs due to what we discovered at https://cirosantilli.com/markdown-style-guide/#dollar-signs-in-shell-code

Signed-off-by: Václav Vančura <commit@vancura.dev>
This commit is contained in:
Václav Vančura 2025-02-05 11:15:18 +01:00 committed by Adam Kliment
parent 493d405cab
commit cc334bf714

View File

@ -49,7 +49,7 @@ This Actor wraps the [Docling project](https://ds4sd.github.io/docling/) to prov
### Using Apify API ### Using Apify API
```bash ```bash
$ curl --request POST \ curl --request POST \
--url "https://api.apify.com/v2/acts/username~actorname/run" \ --url "https://api.apify.com/v2/acts/username~actorname/run" \
--header 'Content-Type: application/json' \ --header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_TOKEN' \ --header 'Authorization: Bearer YOUR_API_TOKEN' \
@ -63,7 +63,7 @@ $ curl --request POST \
### Using Apify CLI ### Using Apify CLI
```bash ```bash
$ apify call username/actorname --input='{ apify call username/actorname --input='{
"documentUrl": "https://arxiv.org/pdf/2408.09869.pdf", "documentUrl": "https://arxiv.org/pdf/2408.09869.pdf",
"outputFormat": "md", "outputFormat": "md",
"ocr": true "ocr": true
@ -98,7 +98,7 @@ If the Actor logs warnings or debug info, these messages can be pushed to `DOCLI
You can retrieve the results programmatically by calling: You can retrieve the results programmatically by calling:
```bash ```bash
$ apify key-value-stores get-value OUTPUT_RESULT apify key-value-stores get-value OUTPUT_RESULT
``` ```
### Example Outputs ### Example Outputs
@ -188,7 +188,7 @@ If you wish to develop or modify this Actor locally:
4. Run the Actor locally using: 4. Run the Actor locally using:
```bash ```bash
$ apify run apify run
``` ```
### Actor Structure ### Actor Structure