-
Notifications
You must be signed in to change notification settings - Fork 143
Open
Labels
Description
Hello,
My PDF file contains long tables, and the tables include images. I tried
md_text = pymupdf4llm.to_markdown("input.pdf", write_images=True)
and the result was that the images were extracted but placed below the table.
| Col1 | Col2 | Image |
|---|---|---|
| Text | Text | |
| Text | Text | |
| Text | Text | |



However, I want the images to be inside the table. like:
| Col1 | Col2 | Image |
|---|---|---|
| Text | Text |  |
| Text | Text |  |
| Text | Text |  |
How can I achieve this?
Best