aboutsummaryrefslogtreecommitdiff
path: root/changelog.md
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2020-07-23 17:51:59 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2020-07-23 17:51:59 -0700
commit42b3f558d9658d31b7cb94dd2db9624b5081ff63 (patch)
treecdf9f41efe35c8b27426b28826f495e0a6e1931a /changelog.md
parent48fb6d947df96e8e1f339b2916740f3e216f8908 (diff)
downloadpandoc-42b3f558d9658d31b7cb94dd2db9624b5081ff63.tar.gz
Update changelog.
Diffstat (limited to 'changelog.md')
-rw-r--r--changelog.md11
1 files changed, 10 insertions, 1 deletions
diff --git a/changelog.md b/changelog.md
index 5bcc30c21..0b6c45f8e 100644
--- a/changelog.md
+++ b/changelog.md
@@ -122,6 +122,8 @@
* Text.Pandoc.Extensions:
+ + Add `raw_markdown` extension (which only affects `ipynb`
+ input).
+ Trim down `githubMarkdownExtensions`.
Previously it included all of the following, which make
sense for the legacy `markdown_github` but not for `gfm`,
@@ -138,7 +140,6 @@
These have been removed from `githubMarkdownExtensions`, though
they're still turned on for legacy `markdown_github`.
-
+ Add `Ext_attributes` constructor for `Extension` [API change].
* LaTeX template: use selnolig to selectively suppress ligatures with
@@ -313,6 +314,14 @@
* Ipynb reader:
+ + Implement `raw_markdown` extension (#5408). Specifying
+ `-f ipynb+raw_markdown` will cause Markdown cells
+ to be represented as raw Markdown blocks, instead of being
+ parsed. This is not what you want when going from `ipynb`
+ to other formats, but it may be useful when going from `ipynb`
+ to Markdown or to `ipynb`, to avoid semantically insignificant
+ changes in the contents of the Markdown cells that might
+ otherwise be introduced.
+ Handle application/pdf output as image (#6430).
+ Properly handle image/svg+xml as an image (#6430).