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
* 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
+
171
191
## 0.61.24
172
192
173
193
* 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
186
206
187
207
<p><a href="/uri">[][moon]</a></p>
188
208
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.
190
211
191
212
## 0.61.22
192
213
@@ -243,9 +264,9 @@ Please give feedback on the upcoming changes if you have concerns about breaking
243
264
* Add: `JekyllTagExtension.EMBED_INCLUDED_CONTENT`, default `false`. Set to `true` to embed
244
265
included markdown content.
245
266
* 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.
247
268
* 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)]
249
270
250
271
## 0.61.10
251
272
@@ -2059,6 +2080,8 @@ Please give feedback on the upcoming changes if you have concerns about breaking
2059
2080
[#391, PR: Fix: CRLF line separator in fenced code blocks produce redundant CR.]: https://github.com/vsch/flexmark-java/pull/391
2060
2081
[#396, DocumentParser stops reading too early resulting in the document being cut off]: https://github.com/vsch/flexmark-java/issues/396
2061
2082
[#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
0 commit comments