You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sorry for style question, but library cannot provide right behavior
if I try to add rules about link with underscore, it will never be rendered in PDF as link with underscore.
it is look like text-decoration does not work
final StyleSheet styleSheet = new StyleSheet();
styleSheet.loadTagStyle("a", "color", "blue");
**styleSheet.loadTagStyle("a", "text-decoration", "underline");**
final Map<String, Object> interfaceProps = new HashMap<>();
try {
final List<Element> pdfElements = HTMLWorker.parseToList(reader, styleSheet, interfaceProps);
for (final Element elem : pdfElements) {
textCell.addElement(elem);
}
} catch (IOException e) {
The text was updated successfully, but these errors were encountered:
Sorry for style question, but library cannot provide right behavior
if I try to add rules about link with underscore, it will never be rendered in PDF as link with underscore.
it is look like text-decoration does not work
The text was updated successfully, but these errors were encountered: