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…...Solution To address this, you can adjust the MarkdownSaveOptions settings...save_options.export_table_as_image property is set to false . This will...