aboutsummaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2007-01-06 09:54:58 +0000
committerfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2007-01-06 09:54:58 +0000
commitbb8478e4e24b431ca81ee7f669d517eb11a47500 (patch)
tree3dedfbceaf88404e531b81e37f07b8f026f07ebb /debian
parent06e6107f535ae921f4b1fec2e7de7dd98b793435 (diff)
downloadpandoc-bb8478e4e24b431ca81ee7f669d517eb11a47500.tar.gz
Merged changes from 'quotes' branch since r431. Smart typography
is now handled in the Markdown and LaTeX readers, rather than in the writers. The HTML writer has been rewritten to use the prettyprinting library. git-svn-id: https://pandoc.googlecode.com/svn/trunk@436 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog12
1 files changed, 9 insertions, 3 deletions
diff --git a/debian/changelog b/debian/changelog
index 58ca59a8a..506cac161 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -79,6 +79,8 @@ pandoc (0.3) unstable; urgency=low
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.
* Made handling of code blocks more consistent. Previously, some
readers allowed trailing newlines, while others stripped them.
@@ -108,9 +110,13 @@ pandoc (0.3) unstable; urgency=low
+ Process quotes before dashes. This way (foo -- 'bar') will turn into
(foo---`bar') instead of (foo---'bar').
- * Improved handling of smart quotes in HTML and LaTeX writers, to
- handle cases where latex commands or HTML entity references appear
- after quotes.
+ * Moved handling of "smart typography" from the writers to the Markdown
+ and LaTeX readers. This allows great simplification of the writers
+ and more accurate smart quotes, dashes, and ellipses. DocBook can
+ now use '<quote>'. The '--smart' option now toggles an option in
+ the parser state rather than a writer option. Several new kinds
+ of inline elements have been added: Quoted, Ellipses, Apostrophe,
+ EmDash, EnDash.
* Changes in HTML writer:
+ Include title block in header even when title is null.