Releases: kivikakk/cmark-gfm-hs
Releases · kivikakk/cmark-gfm-hs
0.2.6
0.2.5
What's Changed
- [#26] Footnotes support by @Sorokin-Anton in #27
New Contributors
- @Sorokin-Anton made their first contribution in #27
Full Changelog: 0.2.4...0.2.5
0.2.4
0.2.3
0.2.2
0.2.1
What's Changed
- feat(extensions): Add support for task list extension by @gillchristian in #16
New Contributors
- @gillchristian made their first contribution in #16
Full Changelog: 0.2.0...0.2.1
0.2.0
Pulls in upstream changes:
cmark 0.6 (08 Apr 2019)
- Update to cmark 0.29.0.
- Export optUnsafe. Note that the default is now to suppress
potentially unsafe HTML; set optUnsafe to return to the old behavior.
Full Changelog: 0.1.8...0.2.0
0.1.8
0.1.7
- Update to cmark-gfm 0.28.3.gfm.20.
Also pulls in upstream changes:
cmark 0.5.6.1 (11 Mar 2019):
-
Fix CString memory leaks (Anders Kaseorg). The renderer functions return
a malloc’d string which the caller is expected to free. -
Fix use-after-free bugs (Anders Kaseorg).
useAsCString
frees the
CString after the IO action finishes executing, so passingreturn
as that
action can never be correct. To make sure the CString gets freed at the
right time, we need a “with”-style abstraction, not just a conversion
function. While we’re here replace this withwithCStringLen
, which also
makes fewer copies. -
Show node type on error for unknown node type.