├── .difyignore ├── .env.example ├── .github └── workflows │ └── auto-pr.yml ├── .gitignore ├── GUIDE.md ├── PRIVACY.md ├── README.md ├── _assets ├── icon.svg ├── markitdown.png └── micro.png ├── main.py ├── manifest.yaml ├── provider ├── markitdown.py └── markitdown.yaml ├── requirements.txt └── tools ├── markitdown.py └── markitdown.yaml /.difyignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yevanchen/markitdown-dify-plugin/HEAD/.difyignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yevanchen/markitdown-dify-plugin/HEAD/.env.example -------------------------------------------------------------------------------- /.github/workflows/auto-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yevanchen/markitdown-dify-plugin/HEAD/.github/workflows/auto-pr.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yevanchen/markitdown-dify-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yevanchen/markitdown-dify-plugin/HEAD/GUIDE.md -------------------------------------------------------------------------------- /PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yevanchen/markitdown-dify-plugin/HEAD/PRIVACY.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yevanchen/markitdown-dify-plugin/HEAD/README.md -------------------------------------------------------------------------------- /_assets/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yevanchen/markitdown-dify-plugin/HEAD/_assets/icon.svg -------------------------------------------------------------------------------- /_assets/markitdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yevanchen/markitdown-dify-plugin/HEAD/_assets/markitdown.png -------------------------------------------------------------------------------- /_assets/micro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yevanchen/markitdown-dify-plugin/HEAD/_assets/micro.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yevanchen/markitdown-dify-plugin/HEAD/main.py -------------------------------------------------------------------------------- /manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yevanchen/markitdown-dify-plugin/HEAD/manifest.yaml -------------------------------------------------------------------------------- /provider/markitdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yevanchen/markitdown-dify-plugin/HEAD/provider/markitdown.py -------------------------------------------------------------------------------- /provider/markitdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yevanchen/markitdown-dify-plugin/HEAD/provider/markitdown.yaml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | dify_plugin 2 | markitdown[all] 3 | -------------------------------------------------------------------------------- /tools/markitdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yevanchen/markitdown-dify-plugin/HEAD/tools/markitdown.py -------------------------------------------------------------------------------- /tools/markitdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yevanchen/markitdown-dify-plugin/HEAD/tools/markitdown.yaml --------------------------------------------------------------------------------