CLI usage instructions
Plus added a PyPI badge
This commit is contained in:
parent
b40139652b
commit
6ebef5af0c
1 changed files with 12 additions and 0 deletions
12
README.md
12
README.md
|
|
@ -1,5 +1,7 @@
|
|||
# MarkItDown
|
||||
|
||||
[](https://pypi.org/project/markitdown/)
|
||||
|
||||
The MarkItDown library is a utility tool for converting various files to Markdown (e.g., for indexing, text analysis, etc.)
|
||||
|
||||
It presently supports:
|
||||
|
|
@ -23,6 +25,16 @@ result = markitdown.convert("test.xlsx")
|
|||
print(result.text_content)
|
||||
```
|
||||
|
||||
To use this as a command-line utility, install it and then run it like this:
|
||||
|
||||
```bash
|
||||
markitdown path-to-file.pdf
|
||||
```
|
||||
This will output Markdown to standard output. You can save it like this:
|
||||
```bash
|
||||
markitdown path-to-file.pdf > document.md
|
||||
```
|
||||
|
||||
## Contributing
|
||||
|
||||
This project welcomes contributions and suggestions. Most contributions require you to agree to a
|
||||
|
|
|
|||
Loading…
Reference in a new issue