summaryrefslogtreecommitdiff
path: root/changelog.txt
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2016-01-17 21:53:29 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2016-01-17 21:53:29 -0800
commitae806c61768ee2cad6501378a8e6d9199a00b5b4 (patch)
treef3877a4c89850497cc178b174b9dff4dffe668de /changelog.txt
parent047e65d0b05f601bd0a6fafb4f4eab98659c1529 (diff)
Bump to 0.24.1, updated changelog.
Diffstat (limited to 'changelog.txt')
-rw-r--r--changelog.txt22
1 files changed, 22 insertions, 0 deletions
diff --git a/changelog.txt b/changelog.txt
index 706567c..1deee77 100644
--- a/changelog.txt
+++ b/changelog.txt
@@ -1,3 +1,25 @@
+[0.24.1]
+
+ * Commonmark renderer:
+ + Use HTML comment, not two blank lines, to separate a list
+ item from a following code block or list. This makes the
+ output more portable, since the "two blank lines" rule is
+ unique to CommonMark. Also, it allows us to break out of
+ a sublist without breaking out of all levels of nesting.
+ + `is_autolink` - handle case where link has no children,
+ which previously caused a segfault.
+ + Use 4-space indent for bullet lists, for increased portability.
+ + Use 2-space + newline for line break for increased portability (#90).
+ + Improved punctuation escaping. Previously all `)` and
+ `.` characters after digits were escaped; now they are
+ only escaped if they are genuinely in a position where
+ they'd cause a list item. This is achieved by changes in
+ `render.c`: (a) `renderer->begin_content` is only set to
+ false after a string of digits at the beginning of the
+ line, and (b) we never break a line before a digit.
+ Also, `begin_content` is properly initialized to true.
+ * Handle NULL root in `consolidate_text_nodes`.
+
[0.24.0]
* [API change] Added `cmark_node_replace(oldnode, newnode)`.