Skip to content

Commit 4aedaa9

Browse files
committed
prep release
1 parent ccdb4d7 commit 4aedaa9

File tree

2 files changed

+32
-12
lines changed

2 files changed

+32
-12
lines changed

Diff for: VERSION-TODO.md

+6-5
Original file line numberDiff line numberDiff line change
@@ -208,8 +208,8 @@ Please give feedback on the upcoming changes if you have concerns about breaking
208208
+ [ ] Add: dependency resolution for Node Renderer Factories to make them independent of
209209
extension add order
210210
* [ ] Fix: Change spec example to variable number of sections
211-
* [ ] Add: yaml front matter configurator for modules. See: [Yaml Front Matter
212-
Configuration](../../wiki/Yaml-Front-Matter-Configuration)
211+
* [ ] Add: yaml front matter configurator for modules. See:
212+
[Yaml Front Matter Configuration](../../wiki/Yaml-Front-Matter-Configuration)
213213
* [ ] Fix: table formatting caret position tracking affects alignment even when not inserting,
214214
just formatting. Need to keep track of whether format after typing or just format. Then
215215
caret position should only track but not force spaces behind it to be preserved. See
@@ -231,7 +231,7 @@ Please give feedback on the upcoming changes if you have concerns about breaking
231231
* Break: `TextCollectingVisitor` needs `TextContainer.F_ADD_SPACES_BETWEEN_NODES` to ensure
232232
there is at least one space between texts of different nodes in collected text. Previously
233233
this was added automatically by sequence builder. Use one of the `getAndCollect` functions
234-
taking options flags.
234+
taking options flags and pass `TextContainer.F_ADD_SPACES_BETWEEN_NODES`.
235235
* Fix: `MarkdownParagraph` wrapping with preserving tracked offsets with spaces to preserve
236236
spaces right before last non-blank character.
237237
* Fix: unify handling of link generating inline element handling in link text elements.
@@ -240,7 +240,7 @@ Please give feedback on the upcoming changes if you have concerns about breaking
240240
* Fix: `WikiNode` to implement `LinkRefDerived`
241241
* Fix: `WikiLink` to implement `LinkRendered`
242242
* Fix: `Footnote` to implement `LinkRendered`
243-
243+
244244
:information_source: nested link ref derived elements in link ref text have priority and
245245
cannot be used to embed into link ref text using `[link ref text][ref id]` syntax.
246246

@@ -262,7 +262,8 @@ Please give feedback on the upcoming changes if you have concerns about breaking
262262

263263
<p><a href="/uri">[][moon]</a></p>
264264

265-
:information_source: Undefined reference links are always treated as text when in a link text element.
265+
:information_source: Undefined reference links are always treated as text when in a link
266+
text element.
266267

267268
## 0.61.22
268269

Diff for: VERSION.md

+26-7
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
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 \`&amp;\` (escaped query params)]
269+
* Fix: [#398, Autolinks get cut off if they contain \`&amp;\` (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 \`&amp;\` (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 \`&amp;\` (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

Comments
 (0)