Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
Aspose.Words for MarkItDown is a free plugin for MarkItDown based on Aspose.Words for Python via .Net commercial library.
The plugin is designed for parsing multiple document formats and converting them into Markdown suitable for AI processing.
The project is located in the GitHub repository.
.doc, .rtf, .odt, .mhtml, .mobi and .azw3 formats..docx, .pdf, .html, .epub and .txt documents.pip install aspose-words-markitdown
List MarkItDown plugins with the command:
markitdown --list-plugins
Check the plugin is installed:
Installed MarkItDown 3rd-party Plugins:
* aspose_words_markitdown (package: aspose_words_markitdown)
You can use the original markitdown CLI in the common way. Just add the --use-plugins option to enable the plugin.
markitdown test.doc -o out.md --use-plugins
Basic usage in Python:
from markitdown import MarkItDown
md = MarkItDown(enable_plugins=True) # Set to True to enable the plugin
result = md.convert("test.doc")
print(result.text_content) To activate your Aspose.Words for Python license, set the corresponding environment variable.
Refer to the OS-specific instructions below:
Unix-based (Linux/macOS):
export ASPOSE_WORDS_LICENSE_PATH="/path/to/license/aspose.words.lic"
Windows-based:
set ASPOSE_WORDS_LICENSE_PATH=c:\path\to\license\aspose.words.lic
Python API:
from aspose_words_markitdown import LicenseManager
LicenseManager().apply_license("/path/to/license/aspose.words.lic") To run unit tests for Aspose.Words for MarkItDown, follow these steps:
From the root of the repository, change into the package directory:
cd /packages/aspose-words-markitdown/tests
Make sure pytest is installed:
pip install pytest
pytestTo run all tests:
pytest
This package is licensed under the MIT License. However, it depends on Aspose.Words for Python via .Net library, which is proprietary, closed-source library.
⚠️ You must obtain valid license for Aspose.Words for Python via .Net library. This repository does not include or distribute any proprietary components.
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.