This project provides a utility to convert .docx
files to Markdown format.
git clone https://github.com/CirrusLabs-NPD/docx2md.git
cd docx2md
Create a virtual environment to manage dependencies.
python -m venv venv
On Windows:
venv\Scripts\activate
On macOS and Linux:
source venv/bin/activate
Install the necessary Python packages using pip:
pip install python-docx markdown pillow requests
Ensure your directory structure looks like this:
docx2md/
│
├── images/
│
├── app.py
│
└── utils.py
Start the doc2md app:
python app.py