-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PDF tagging: tables are structured wrongly, and include non-table content #1001
Comments
The PDF tags public StructureTreeElement startNode(String name, Attributes attributes, StructureTreeElement parent) {
if (!isPDFA1Safe(name)) {
return null;
}
...
...
private boolean isPDFA1Safe(String name) {
return !((pdfFactory.getDocument().getProfile().getPDFAMode().isPart1()
|| pdfFactory.getDocument().getProfile().getPDFUAMode().isEnabled())
&& (name.equals("table-body")
|| name.equals("table-header")
|| name.equals("table-footer"));
} I've tried to remove the condition for PDF/UA ( The Adobe Acrobat Preflight feature The feature The Actually, I don't know why the condition |
Regarding issue with table footer break I've found my 6 years ago question on SO https://stackoverflow.com/questions/41625388/table-footer-doesnt-page-break-using-apache-fop#comment80796453_41625388 I'll add the ticket on Apache FOP bug tracker. |
Issue added: https://issues.apache.org/jira/browse/FOP-3134 |
The tables are structured elaborately but wrongly, and include non-table content in the table
From metanorma/mn2pdf#201
The text was updated successfully, but these errors were encountered: