I convert docx to markdown.There is a table content in the docx, not an image. But after converting to markdown, the table content becomes an image.
code:
document = aw.Document(file_path)
for Page in range(0, docu…...Document(file_path) for page in range(0, document.page_count): extractedPage...document.extract_pages(page, 1) name = f"output2/page{page + 1}.docx"...