Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
commonmark-java 0.24.0 source code.tar.gz | 2024-10-21 | 343.5 kB | |
commonmark-java 0.24.0 source code.zip | 2024-10-21 | 563.4 kB | |
README.md | 2024-10-21 | 710 Bytes | |
Totals: 3 Items | 907.6 kB | 0 |
Added
SourceSpan
on nodes now have agetInputIndex
to get the index within the original input string (in addition to the existing line/column indexes). This is useful when looking up the input source: It can now be done usingsubstring
instead of having to split the input into lines first (#348)- Configurable line break rendering for
TextContentRenderer
vialineBreakRendering
on the builder; e.g.LineBreakRendering.SEPARATE_BLOCKS
will render an empty line between blocks (#344)
Changed
- Adopted small changes from OpenJDK vendoring to make updates easier for them (#343)
Fixed
- Enable overriding of built-in node rendering for
TextContentRenderer
(#346)