diff options
author | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2007-01-06 20:47:00 +0000 |
---|---|---|
committer | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2007-01-06 20:47:00 +0000 |
commit | 233148f9638f637871391cbed239068aeddb6cca (patch) | |
tree | bda8ced5e165d64c9c69e361718c13282514bf94 /debian | |
parent | 58dcef062556067b753892c8020d7f8c4e0bed0c (diff) | |
download | pandoc-233148f9638f637871391cbed239068aeddb6cca.tar.gz |
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.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@442 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 13 |
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 |