Good day,
I've been tasked with adding accessibility into our PDF generation. After researching existing threads, I've downloaded and installed the latest version that provides the GenerateTags property and functionality. However, nothing seemed to change after enabling this.
I then created a tiny HTML page that I suspected with have its elements tagged appropriately:
<html>
<body>
<h1>This is the header</h1>
<h2>This is the subheader</h2>
<p>This is a paragraph of text that would be considered the body of the message.</p>
</body>
</html>
Using Adobe Acrobat for accessibility checking, it was reported that "Tagged PDF" failed and looking at the document elements, everything was rendered as a simple P element. Even so, the P elements were not tagged.

Are there any guidelines to structuring the HTML to make use of the automatic tagging in EO.PDF? Thank you for any help you can provide.