Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Releases: shloktech/md2docx-python

Adding Docs to Markdown Feature

14 Mar 15:54
a9a37dc

Choose a tag to compare

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:

image

Output .md file:

image

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 convert
  • markdown_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

01 Jan 19:12
ae78659

Choose a tag to compare

Release minor changes related to documentations

0.3.1

01 Jan 18:33
8e61000

Choose a tag to compare

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

01 Jan 18:32
8e61000

Choose a tag to compare

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

01 Jan 18:03
b941e78

Choose a tag to compare

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

11 Aug 18:26
3588e79

Choose a tag to compare

Creating md2docx-python