aboutsummaryrefslogtreecommitdiff
path: root/debian/changelog
diff options
context:
space:
mode:
Diffstat (limited to 'debian/changelog')
-rw-r--r--debian/changelog13
1 files changed, 9 insertions, 4 deletions
diff --git a/debian/changelog b/debian/changelog
index 506cac161..682b2e54a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -73,15 +73,20 @@ pandoc (0.3) unstable; urgency=low
+ Revised inline code parsing in Markdown reader to conform to
markdown standard. Now any number of `s can begin inline code,
which will end with the same number of `s. For example, to
- have two backticks as code, write ``` `` ```.
+ have two backticks as code, write ``` `` ```. Modified Markdown
+ writer accordingly.
+ Modified HTML reader to skip a newline following a <br> tag.
Otherwise the newline will be treated as a space at the beginning
of the next line.
+ Fixed bug in text-wrapping routine in Markdown and RST writers.
Now LineBreaks no longer cause wrapping problems.
- + Fixed bug with inline Code in Markdown writer. Now it's guaranteed
- that enough `'s will be used, depending on the content.
-
+ + Supported hexadecimal numerical entity references as well as
+ decimal ones.
+ + Fixed bug in Markdown reader's handling of underscores and other
+ inline formatting markers inside reference labels: for example,
+ in '[A_B]: /url/a_b', the material between underscores was being
+ parsed as emphasized inlines.
+
* Made handling of code blocks more consistent. Previously, some
readers allowed trailing newlines, while others stripped them.
Now, all readers strip trailing newlines in code blocks. Writers