Releases: shloktech/md2docx-python
Adding Docs to Markdown Feature
I am introducing a new feature in this repo which will convert the given docs to Markdown.
Install new release using:
pip install md2docx-python==1.0.0
Word to Markdown Conversion Example:
Input .docx file:
Output .md file:
For Converting Word to Markdown
Use the word_to_markdown() function to convert your Word document to Markdown:
word_to_markdown(word_file, markdown_file)word_file: The path to the Word document you want to convertmarkdown_file: The desired path and name for the output Markdown file
Here's a complete example:
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
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:
- Packaged the repo and uploaded it to PyPi (https://pypi.org/project/md2docx-python-python/)
- Added pipeline to perform code sanity checks and unit test.

