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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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