Md2docx-python

Latest version: v1.0.0

Safety actively analyzes 723607 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

1.0.0

Word to Markdown Conversion Example:
Input .docx file:
![image](https://github.com/user-attachments/assets/2891ebdf-ff36-4fd5-af2f-b35413264b06)

Output .md file:
![image](https://github.com/user-attachments/assets/e46c096b-762e-4f0c-a0ab-f81c3069a533)


For Converting Word to Markdown
Use the `word_to_markdown()` function to convert your Word document to Markdown:

python
word_to_markdown(word_file, markdown_file)


- `word_file`: The path to the Word document you want to convert
- `markdown_file`: The desired path and name for the output Markdown file


Here's a complete example:

python
from md2docx_python.src.docx2md_python import word_to_markdown

Define the paths to your files
word_file = "sample_files/test_document.docx"
markdown_file = "sample_files/test_document_output.md"

Convert the Word document to a Markdown file
word_to_markdown(word_file, markdown_file)


This code will create a file named `test_document_output.md`, which is the conversion of `test_document.docx` to the Markdown format.

---

0.3.2

Release minor changes related to documentations

0.3.1

In this release I updated the Readme.md file for better documentation of the project.
Check it out at https://pypi.org/project/md2docx-python/#description

0.3.0

In this release I renamed the package from md2docx-python-python to md2docx-python

It is now available at https://pypi.org/project/md2docx-python/#description

0.2.0

I am excited to announce the second release of the Markdown to Word Converter! This tool enables users to seamlessly convert Markdown files into formatted Microsoft Word documents with support for headings, styled text, lists and more.

Release notes:
1) Packaged the repo and uploaded it to PyPi (https://pypi.org/project/md2docx-python-python/)
2) Added pipeline to perform code sanity checks and unit test.

0.1.0

Creating md2docx-python

Links

Releases

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.