Todd Taomae
Todd Taomae
I came across a site which uses an `` tag with an `href` attribute to create links with a non-standard shape. I don't know if this is the correct way...
While investigating #220, I came across `OdfTableCell.getOdfElement().getTextContent()`, which is defined by [`org.w3c.dom.Node.getTextContent()`](https://docs.oracle.com/en/java/javase/11/docs/api/java.xml/org/w3c/dom/Node.html#getTextContent()) and implemented [in `OdfElement`](https://github.com/tdf/odftoolkit/blob/v0.11.0/odfdom/src/main/java/org/odftoolkit/odfdom/pkg/OdfElement.java#L2638). My interpretation of the `Node.getTextContent()` documentation is that it should recursively retrieve the text...
If an ODS spreadsheet cell contains a comment, the `OdfTableCell.getDisplayText()` method returns a string which looks something like: `"2023-05-22T00:00:00CommentCell"` where I assume the timestamp is the time of the comment,...