66
77- [ Release 0.60.0] ( #release-0600 )
88 - [ API Refactoring] ( #api-refactoring )
9+ - [ 0.61.26] ( #06126 )
910- [ 0.61.24] ( #06124 )
1011- [ 0.61.22] ( #06122 )
1112- [ 0.61.20] ( #06120 )
@@ -168,6 +169,25 @@ Please give feedback on the upcoming changes if you have concerns about breaking
168169 * ` com.vladsch.flexmark.util.ast.NodeAdaptingVisitHandler `
169170 * ` com.vladsch.flexmark.util.ast.NodeAdaptingVisitor `
170171
172+ ## 0.61.26
173+
174+ * Fix: ` SequenceBuilder.toString() ` not to add space between sequence parts.
175+ * Break: ` TextCollectingVisitor ` needs ` TextContainer.F_ADD_SPACES_BETWEEN_NODES ` to ensure
176+ there is at least one space between texts of different nodes in collected text. Previously
177+ this was added automatically by sequence builder. Use one of the ` getAndCollect ` functions
178+ taking options flags and pass ` TextContainer.F_ADD_SPACES_BETWEEN_NODES ` .
179+ * Fix: ` MarkdownParagraph ` wrapping with preserving tracked offsets with spaces to preserve
180+ spaces right before last non-blank character.
181+ * Fix: unify handling of link generating inline element handling in link text elements.
182+ * Add: ` LinkRendered ` interface to identify link rendering elements derived from link/image
183+ ref syntax identified by implementation of ` LinkRefDerived ` interface
184+ * Fix: ` WikiNode ` to implement ` LinkRefDerived `
185+ * Fix: ` WikiLink ` to implement ` LinkRendered `
186+ * Fix: ` Footnote ` to implement ` LinkRendered `
187+
188+ :information_source : nested link ref derived elements in link ref text have priority and
189+ cannot be used to embed into link ref text using ` [link ref text][ref id] ` syntax.
190+
171191## 0.61.24
172192
173193* Fix: link refs in link text should be collapsed.
@@ -186,7 +206,8 @@ Please give feedback on the upcoming changes if you have concerns about breaking
186206
187207 <p><a href="/uri">[][moon]</a></p>
188208
189- :information_source : Undefined reference links are always treated as text when in a link text element.
209+ :information_source : Undefined reference links are always treated as text when in a link
210+ text element.
190211
191212## 0.61.22
192213
@@ -243,9 +264,9 @@ Please give feedback on the upcoming changes if you have concerns about breaking
243264* Add: ` JekyllTagExtension.EMBED_INCLUDED_CONTENT ` , default ` false ` . Set to ` true ` to embed
244265 included markdown content.
245266* Fix: tracked paragraph wrapping when inserting space before EOL on a line when the word before
246- caret will be wrapped to the next line. ie. the EOL will be removed.
267+ caret will be wrapped to the next line. ie. the EOL will be removed.
247268* Deprecate: ` JekyllTagExtension.ENABLE_RENDERING ` , not used nor needed.
248- * Fix: [ #398 , Autolinks get cut off if they contain \` & ; \` (escaped query params)]
269+ * Fix: [ #398 , Autolinks get cut off if they contain \` & ; \` (escaped query params)]
249270
250271## 0.61.10
251272
@@ -2059,6 +2080,8 @@ Please give feedback on the upcoming changes if you have concerns about breaking
20592080[#391, PR: Fix: CRLF line separator in fenced code blocks produce redundant CR.]: https://github.com/vsch/flexmark-java/pull/391
20602081[#396, DocumentParser stops reading too early resulting in the document being cut off]: https://github.com/vsch/flexmark-java/issues/396
20612082[#397, PR: Add base64 image support with docx rendering]: https://github.com/vsch/flexmark-java/pull/397
2083+ [#398, Autolinks get cut off if they contain \`&\` (escaped query params)]: https://github.com/vsch/flexmark-java/issues/398
2084+ [#407, Link text inline content fails to parse image references]: https://github.com/vsch/flexmark-java/issues/407
20622085[@Xaelis]: https://github.com/Xaelis
20632086[Awesome Console]: https://plugins.jetbrains.com/plugin/7677-awesome-console "Awesome Console"
20642087[HtmlToMarkdownCustomizedSample.java]: https://github.com/vsch/flexmark-java/blob/master/flexmark-java-samples/src/com/vladsch/flexmark/java/samples/HtmlToMarkdownCustomizedSample.java
@@ -2070,7 +2093,3 @@ Please give feedback on the upcoming changes if you have concerns about breaking
20702093[migrate flexmark-java 0_40_x to 0_42_0]: https://github.com/vsch/flexmark-java/blob/master/assets/migrations/migrate%20flexmark-java%200_40_x%20to%200_42_0.xml
20712094[migrate flexmark-java 0_42_x to 0_50_0.xml]: https://github.com/vsch/flexmark-java/blob/master/assets/migrations/migrate%20flexmark-java%200_42_x%20to%200_50_0.xml
20722095
2073-
2074- [#398, Autolinks get cut off if they contain \`&\` (escaped query params)]: https://github.com/vsch/flexmark-java/issues/398
2075-
2076- [#407, Link text inline content fails to parse image references]: https://github.com/vsch/flexmark-java/issues/407
0 commit comments