mirror of
https://github.com/hwchase17/langchain.git
synced 2026-02-21 22:56:05 +00:00
### Summary
Adds a document loader for handling markdown files. This document loader
requires `unstructured>=0.4.16`.
### Testing
```python
from langchain.document_loaders import UnstructuredMarkdownLoader
loader = UnstructuredMarkdownLoader("README.md")
loader.load()
```