aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2018-07-15 16:09:11 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2018-07-15 16:09:11 -0700
commit75cf1f59ff30115ce235edf5ca17abb903d78d6c (patch)
treeb8283b2004a719dd5088057848df5c65d00cb09c
parentaf445b34d8ec1a6f60cd6eb7c6964e7de450ae83 (diff)
downloadpandoc-75cf1f59ff30115ce235edf5ca17abb903d78d6c.tar.gz
Update changelog.
-rw-r--r--changelog19
1 files changed, 18 insertions, 1 deletions
diff --git a/changelog b/changelog
index 1b80c50d9..e90ff295d 100644
--- a/changelog
+++ b/changelog
@@ -42,7 +42,14 @@ pandoc (2.2.2)
+ Parse more siunitx unit commands (#4296, #4773).
+ Be more forgiving in key/value option parsing (#4761).
- * Markdown reader: Allow empty code spans, e.g. `` ` ` ``.
+ * Markdown reader:
+
+ + Allow empty code spans, e.g. `` ` ` ``.
+ + Emojis are now wrapped in Spans with class `emoji` and
+ attribute `data-emoji` (Anders Waldenborg, #4743).
+ This allows the writer to handle them in a special way
+ (e.g. using a special font, or just rendering the
+ emoji name).
* Muse reader (Alexander Krotov, except where indicated):
@@ -60,6 +67,11 @@ pandoc (2.2.2)
* Markdown writer: Preserve `implicit_figures` with attributes, even if
`implicit_attributes` is not set, by rendering in raw HTML (#4677).
+ * Markdown and commonmark/github writers now respect the `emoji`
+ extension. So, `-f markdown+emoji -t markdown+emoji` now leaves
+ `:smile:` as `:smile:` rather than converting it to a smile
+ character.
+
* Docx writer: Be sensitive to `toc` in YAML metadata (#4645).
* ODT/OpenDocument writer: Make internal links work (#4358).
@@ -98,6 +110,11 @@ pandoc (2.2.2)
* Custom writer: fix error message on script failure (Albert Krewinkel).
Error messages produced by Lua were not displayed by Pandoc.
+ * Text.Pandoc.Emoji now exports `emojiToInline`, which returns a Span
+ inline containing the emoji character and some attributes with metadata
+ (class `emoji`, attribute `data-emoji` with emoji name). (API change,
+ Anders Waldenborg, #4743).
+
* Text.Pandoc.PDF:
+ Revert fix for #4484 (only compress images on last run, #4755).