Hi,
When we call backend function to convert DOCX to Markdown (MD). It generates error as follows:
AttributeError: module 'aspose.words' has no attribute 'io'
Here is the trace:
def convert_to_md(self, file_path: str) -> str:
doc = aw.Document(file_path)
> stream = aw.io.MemoryStream()
E AttributeError: module 'aspose.words' has no attribute 'io'
markitdown\backend\word_converter.py:9: AttributeError