├── .gitignore ├── .python-version ├── LICENSE ├── README.md ├── __main__.py ├── examples └── deepseek.txt ├── pyproject.toml └── uv.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallagherCommaJack/pdf2md/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.12 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallagherCommaJack/pdf2md/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallagherCommaJack/pdf2md/HEAD/README.md -------------------------------------------------------------------------------- /__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallagherCommaJack/pdf2md/HEAD/__main__.py -------------------------------------------------------------------------------- /examples/deepseek.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallagherCommaJack/pdf2md/HEAD/examples/deepseek.txt -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallagherCommaJack/pdf2md/HEAD/pyproject.toml -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallagherCommaJack/pdf2md/HEAD/uv.lock --------------------------------------------------------------------------------