From 4f85e2e12b5dc6e6a857338e0324dbab51e0c8ba Mon Sep 17 00:00:00 2001 From: LuisCostabal Date: Mon, 1 Jun 2026 11:24:13 -0400 Subject: [PATCH] docs: remove spaces in pip extras specifier example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index aa2f58bb8..fa874e881 100644 --- a/README.md +++ b/README.md @@ -92,7 +92,7 @@ cat path-to-file.pdf | markitdown MarkItDown has optional dependencies for activating various file formats. Earlier in this document, we installed all optional dependencies with the `[all]` option. However, you can also install them individually for more control. For example: ```bash -pip install 'markitdown[pdf, docx, pptx]' +pip install 'markitdown[pdf,docx,pptx]' ``` will install only the dependencies for PDF, DOCX, and PPTX files.