File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed
Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## v5.0.1 - 2025-08-22
4+
5+ - Fixed warning on latest gleam_stdlib.
6+
37## v5.0.0 - 2025-05-09
48
59- Support for maths.
Original file line number Diff line number Diff line change 11name = " jot"
2- version = " 5.0.0 "
2+ version = " 5.0.1 "
33gleam = " >= 1.5.0"
44description = " A parser for Djot, a markdown-like language"
55licences = [" Apache-2.0" ]
Original file line number Diff line number Diff line change @@ -1330,7 +1330,7 @@ fn create_footnotes(
13301330 footnote_number : String ,
13311331 ) {
13321332 dict . get ( document . footnotes , footnote )
1333- |> result . then ( fn ( footnote ) {
1333+ |> result . try ( fn ( footnote ) {
13341334 // Even if the footnote is empty, we need to still make sure a backlink is generated
13351335 case list . is_empty ( footnote ) {
13361336 True -> Error ( Nil )
You can’t perform that action at this time.
0 commit comments