Note about piping

This commit is contained in:
Simon Willison
2024-12-13 11:09:03 -08:00
committed by GitHub
parent 6ebef5af0c
commit 33ce17954d

View File

@@ -34,6 +34,10 @@ This will output Markdown to standard output. You can save it like this:
```bash
markitdown path-to-file.pdf > document.md
```
You can pipe content to standard input by omitting the argument:
```bash
cat path-to-file.pdf | markitdown
```
## Contributing