Generated accessible pdf using pdfHTMl add-on in iText 7. To add the link to the pdf used below code in HTML file,
<a href="www.google.com" title="web">www.google.com</a>
C# code as below:
IList<IElement> elements = HtmlConverter.ConvertToElements(htmlFile,converterProperties);
foreach(IElement element in elements){
doc.Add((IBlockElement)element);
}
link was appeared in the pdf as expected. PAC tool gives error saying "Alternative description missing for annotation". I saw same issue already raised here. Fixing a PDF Accessibility Issue (Alternative description missing for an annotation) when converting an HTML Page to PDF and
But there are not mentioned what is the extract answer for this. That is why I'm raised new one. I tired out to create custom tag using aTagWorker. But element is appeared as JSoupElementNode in ProcessEnd method. How to set accessible properties for JSoupElementNode type of elements? Please help me to resolve this issue. Thanks