chore: fix typo in README.md (#1175)

* chore: fix typo in README.md
This commit is contained in:
lentil32
2025-04-14 01:29:16 +09:00
committed by GitHub
parent 8576f1d915
commit ebe2684b3d

View File

@@ -46,7 +46,7 @@ To install MarkItDown, use pip: `pip install 'markitdown[all]'`. Alternatively,
```bash ```bash
git clone git@github.com:microsoft/markitdown.git git clone git@github.com:microsoft/markitdown.git
cd markitdown cd markitdown
pip install -e packages/markitdown[all] pip install -e 'packages/markitdown[all]'
``` ```
## Usage ## Usage
@@ -73,7 +73,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: 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 ```bash
pip install markitdown[pdf, docx, pptx] pip install 'markitdown[pdf, docx, pptx]'
``` ```
will install only the dependencies for PDF, DOCX, and PPTX files. will install only the dependencies for PDF, DOCX, and PPTX files.