From cc334bf71484c01ebca6bd95987a2e757d8d1acc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=A1clav=20Van=C4=8Dura?= Date: Wed, 5 Feb 2025 11:15:18 +0100 Subject: [PATCH] Actor: Documentation update MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- .actor/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.actor/README.md b/.actor/README.md index f45b55f3..69c5242e 100644 --- a/.actor/README.md +++ b/.actor/README.md @@ -49,7 +49,7 @@ This Actor wraps the [Docling project](https://ds4sd.github.io/docling/) to prov ### Using Apify API ```bash -$ curl --request POST \ +curl --request POST \ --url "https://api.apify.com/v2/acts/username~actorname/run" \ --header 'Content-Type: application/json' \ --header 'Authorization: Bearer YOUR_API_TOKEN' \ @@ -63,7 +63,7 @@ $ curl --request POST \ ### Using Apify CLI ```bash -$ apify call username/actorname --input='{ +apify call username/actorname --input='{ "documentUrl": "https://arxiv.org/pdf/2408.09869.pdf", "outputFormat": "md", "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: ```bash -$ apify key-value-stores get-value OUTPUT_RESULT +apify key-value-stores get-value OUTPUT_RESULT ``` ### Example Outputs @@ -188,7 +188,7 @@ If you wish to develop or modify this Actor locally: 4. Run the Actor locally using: ```bash - $ apify run + apify run ``` ### Actor Structure