How to preserve alternate text from the original PDF in the HTML document?
I am exporting a tagged PDF to HTML using Adobe Acrobat, and the process works as expected. The resulting HTML stores the images from the document in a separate folder. However, the issue lies with the alt attribute in the <img> tags. All the <img> tags have the same alt text: alt="image".
<img width="718" height="403" alt="image" src="mytest_files/Image_001.png" />
<img width="718" height="403" alt="image" src="mytest_files/Image_002.png" />
Why doesn't the converted HTML retain the original alternate text from the PDF? Is there a way to preserve the alternate text in the exported document?
