├── .gitignore ├── .python-version ├── LICENSE ├── README.md ├── config-litellm-example.toml ├── config-ollama-example.toml ├── doc2md-example.png ├── doc2md.py ├── process-docs.sh ├── pyproject.toml └── uv.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-mcdermott/doc2md/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.12 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-mcdermott/doc2md/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-mcdermott/doc2md/HEAD/README.md -------------------------------------------------------------------------------- /config-litellm-example.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-mcdermott/doc2md/HEAD/config-litellm-example.toml -------------------------------------------------------------------------------- /config-ollama-example.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-mcdermott/doc2md/HEAD/config-ollama-example.toml -------------------------------------------------------------------------------- /doc2md-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-mcdermott/doc2md/HEAD/doc2md-example.png -------------------------------------------------------------------------------- /doc2md.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-mcdermott/doc2md/HEAD/doc2md.py -------------------------------------------------------------------------------- /process-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-mcdermott/doc2md/HEAD/process-docs.sh -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-mcdermott/doc2md/HEAD/pyproject.toml -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-mcdermott/doc2md/HEAD/uv.lock --------------------------------------------------------------------------------