Skip to content

Commit

Permalink
fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
vsch committed May 18, 2023
1 parent b6d484c commit c573242
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions VERSION.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,10 @@

## 0.64.8

* Fix: reference links in html to md conversion use the same ref when link text is the same. Now
the reference id will be generated by adding `_xxx` suffix, where `xxx` is an increasing
integer, starting at 1, and incremented until a unique reference id is generated.
* Fix: reference links in html to md conversion use the same ref id when link text is the same,
even when the URLs differ. Now the reference id will be generated by adding `_xxx` suffix,
where `xxx` is an increasing integer, starting at 1, and incremented until a unique reference
id is generated.
* Add: `UNIQUE_LINK_REF_ID_GENERATOR`, default `(refId, index) -> String.format("%s_%d",
refId, index)`, a `BiFunction<String, Integer, String>` taking refId string and integer
index and returning a string for the "uniquified" ref id to use for a reference link.
Expand Down

0 comments on commit c573242

Please sign in to comment.