summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2023-01-18 15:12:41 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2023-01-18 15:14:29 -0800
commit535bd0393fe7b2f287903b942c96dab1139a7e90 (patch)
tree51f15946e16afd2b9d331c8d3ce02eea26164269
parent415b286acbed5858f196386aaf77b0439bb46aa2 (diff)
Fix date and a few minor things in changelog.
-rw-r--r--changelog.md37
1 files changed, 19 insertions, 18 deletions
diff --git a/changelog.md b/changelog.md
index 8fd63108d..a0dba8d29 100644
--- a/changelog.md
+++ b/changelog.md
@@ -1,9 +1,11 @@
# Revision history for pandoc
-## pandoc 3.0 (PROVISIONAL YYYY-MM-DD)
+## pandoc 3.0 (2023-01-18)
* Split pandoc-server, pandoc-cli, and pandoc-lua-engine
- into separate packages (#8309).
+ into separate packages (#8309). Note that installing
+ the `pandoc` package from Hackage will no longer give you the
+ `pandoc` executable; for that you need to install `pandoc-cli`.
* Pandoc now behaves like a Lua interpreter when called as
`pandoc-lua` or when `pandoc lua` is used (#8311, Albert Krewinkel).
@@ -46,10 +48,16 @@
* Add new `mark` extension for highlighted text in Markdown,
using `==` delimiters (#7743).
- * pandoc-server:
-
- + Add simple CORS support to pandoc-server (#8427).
- + Print message to stderr when starting the server.
+ * Add new extensions `wikilinks_title_after_pipe` and
+ `wikilinks_title_before_pipe` for `commonmark` and `markdown`.
+ (#2923, Albert Krewinkel). The former enables links of style
+ `[[Name of page|Title]]` and the latter `[[Title|Name of
+ page]]`. Titles are optional in both variants, so this works
+ for both: `[[https://example.org]]`, `[[Name of page]]`. The
+ writer is modified to render links with title `wikilink` as
+ a wikilink if a respective extension is enabled. Pandoc will
+ use `wikilinks_title_after_pipe` if both extensions are
+ enabled.
* Add prefixes to identifiers with `--file-scope` (#6384).
This change only affects the case where `--file-scope` is used
@@ -169,6 +177,11 @@
than in the writers. One effect is the man writer now emits
a comment with the pandoc version.
+ * pandoc-server:
+
+ + Add simple CORS support to pandoc-server (#8427).
+ + Print message to stderr when starting the server.
+
* Docx reader:
+ Mark unnumbered headings with class `unnumbered` (#8148,
@@ -247,18 +260,6 @@
+ Handle empty paragraphs (#8487). Also, if attributes are added
explicitly to a paragraph, put it in a Div with the attributes.
- * Markdown and CommonMark writers and readers:
-
- + Add support for wiki links (#2923, Albert Krewinkel) via
- the extensions `wikilinks_title_after_pipe` and
- `wikilinks_title_before_pipe`. The former enables links of style
- `[[Name of page|Title]]` and the latter `[[Title|Name of page]]`.
- Titles are optional in both variants, so this works for both:
- `[[https://example.org]]`, `[[Name of page]]`. The writer is modified
- to render links with title `wikilink` as a wikilink if a respective
- extension is enabled. Pandoc will use `wikilinks_title_after_pipe` if
- both extensions are enabled.
-
* Markdown reader:
+ Allow fenced code block "bare" language to be combined