Vladimir Schneider
Vladimir Schneider
update test. Not critical for most since no one complained about it. I only noticed it because I am testing the plugin.
Nodes get recursively parsed when they are part of list items, block quotes, etc. The start/end offset is adjusted after the parse is complete so the nodes reflect actual offset...
Leading spaces are not part of the node and should be excluded from its range. Nodes affected: - ReferenceNode - FootnoteNode - ParaNode - AbbreviationNode
autolinks includ trailing emphasis characters so `**[email protected]**` would parse as *\* `[email protected]**` instead of *\* `[email protected]` *\* bold email, same for links. Emphasis (and strikethrough if selected in options) characters...
The following should not parse as a task list item: `- [ ]this is not a task item` - [ ]this is not a task item Instead it would parse...
This is a simple fix to concatenate attribute values with a space separator if the attribute is already defined in the Rendering. That way withAttributes() can be called from multiple...
``` | Header 1 | Header 2 | Header 3 | | --------- | --------- | --------- | | 123456789 | - | 123456789 | ``` The above table does...
Creole's wiki link looks like [[Link Address|Optional Link Text]] and GitHub is the reverse [[Optional Link Text|Link Address]]. I just love supporting multiple markdown extensions. :+1: I'll see about adding...
Wiki links can have anchor references [[Document#anchor]] or [[Document#anchor|Document Link Text]] currently the anchor is rendered with the href and HTML escaped. Have a fix and will modify tests. In...
I could not get docx4j to pass tests with Java 8 and gave up for now. Updated the project to Java 11 and released 0.64.0 If this is a show...