Skip to content

Commit 052a1f7

Browse files
committed
fix for #396
1 parent 9719ed1 commit 052a1f7

File tree

73 files changed

+291
-97
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+291
-97
lines changed

.idea/markdown-navigator-enh.xml

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/markdown-navigator.xml

Lines changed: 5 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/markdown-navigator/COPY_HTML_MIME.xml

Lines changed: 6 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/markdown-navigator/Comms.xml

Lines changed: 8 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/markdown-navigator/GitHub_Templates.xml

Lines changed: 6 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/markdown-navigator/OVERVIEW.xml

Lines changed: 6 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/markdown-navigator/Wiki.xml

Lines changed: 6 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 12 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

VERSION-TODO.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
- [Release 0.60.0](#release-0600)
88
- [API Refactoring](#api-refactoring)
99
- [Next 0.61.xx](#next-061xx)
10+
- [0.61.2](#0612)
1011
- [0.61.0](#0610)
1112
- [0.60.2](#0602)
1213
- [0.60.0](#0600)
@@ -214,6 +215,12 @@ Please give feedback on the upcoming changes if you have concerns about breaking
214215
`|` for each line that was wrapped. Otherwise, it is impossible to tell where each line
215216
ends and another begins.
216217

218+
## 0.61.2
219+
220+
* Fix: `ScopedDataSet.getAll()` and `ScopedDataSet.getKeys()` would not return keys from parent
221+
scope.
222+
* Fix: [#396, DocumentParser stops reading too early resulting in the document being cut off]
223+
217224
## 0.61.0
218225

219226
* Fix: enable original spec tests
@@ -2311,4 +2318,6 @@ Please give feedback on the upcoming changes if you have concerns about breaking
23112318
[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
23122319
<!-- @IGNORE PREVIOUS: link -->
23132320
[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
2321+
[#396, DocumentParser stops reading too early resulting in the document being cut off]: https://github.com/vsch/flexmark-java/issues/396
2322+
23142323

VERSION.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66

77
- [Release 0.60.0](#release-0600)
88
- [API Refactoring](#api-refactoring)
9+
- [0.61.2](#0612)
10+
- [0.61.0](#0610)
911
- [0.60.2](#0602)
1012
- [0.60.0](#0600)
1113
- [0.59.84](#05984)
@@ -155,6 +157,35 @@ Please give feedback on the upcoming changes if you have concerns about breaking
155157
* `com.vladsch.flexmark.util.ast.NodeAdaptingVisitHandler`
156158
* `com.vladsch.flexmark.util.ast.NodeAdaptingVisitor`
157159

160+
## 0.61.2
161+
162+
* Fix: `ScopedDataSet.getAll()` and `ScopedDataSet.getKeys()` would not return keys from parent
163+
scope.
164+
* Fix: [#396, DocumentParser stops reading too early resulting in the document being cut off]
165+
166+
## 0.61.0
167+
168+
* Fix: enable original spec tests
169+
* Fix: merge [#391, PR: Fix: CRLF line separator in fenced code blocks produce redundant CR.]
170+
* Fix: merge [#387, JUnit is in the compile scope]
171+
* Add: ability to insert anchor ref targets to `HtmlIdGenerator` when scanning a document.
172+
* Add: add `LinkResolverBasicContext` as base interface of `LinkResolverContext` to allow simple
173+
context to pass to `LinkResolver` when resolving links without needing to implement all unused
174+
methods of `LinkResolverContext`.
175+
* Break: change argument to `LinkResolver` and `LinkResolverFactory` to
176+
`LinkResolverBasicContext`. Except for `JekyllTagExtension`, the argument is still
177+
`LinkResolverContext` and passed value can be cast to this if required.
178+
* Add: support for `JekyllTagBlock` with `include` directive to `DocxRenderer`
179+
180+
Use `{% include includeFile %}` to include the file into the source document. `includeFile` is
181+
resolved relative to `DocxRenderer.DOC_RELATIVE_URL` or `DocxRenderer.DOC_ROOT_URL`. The
182+
latter is used if `includeFile` starts with `/`
183+
184+
Will only include files if `JekyllTagExtension.LINK_RESOLVER_FACTORIES` is not empty, in which
185+
case the link resolvers will be used to resolve `includeFile` to full file path. Use singleton
186+
list of `DocxLinkResolver.Factory` instance to resolve using doc relative and root url paths.
187+
* Fix: `MergeLinkResolver` and `DocxLinkResolver`
188+
158189
## 0.60.2
159190

160191
* Fix: change formatter sub-context rendering node to nullable
@@ -1875,3 +1906,7 @@ Please give feedback on the upcoming changes if you have concerns about breaking
18751906
[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
18761907
[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
18771908

1909+
1910+
[#391, PR: Fix: CRLF line separator in fenced code blocks produce redundant CR.]: https://github.com/vsch/flexmark-java/pull/391
1911+
[#387, JUnit is in the compile scope]: https://github.com/vsch/flexmark-java/pull/387
1912+
[#396, DocumentParser stops reading too early resulting in the document being cut off]: https://github.com/vsch/flexmark-java/issues/396

0 commit comments

Comments
 (0)