A trivial change to document the addition of task_lists.

These notes should have been in the previous commit message.

Added `task_list` extension.

API changes:

+ Added constructor `Ext_task_lists` to `Extension`.
+ Added `taskListItemFromAscii` and `taskListItemToAscii` to
  Text.Pandoc.Shared.

Task lists are supported form markdown and gfm input.
They should work, to some degree, in all output formats,
though in most formats you'll get an ordered list with
a following task list box.  In HTML and LaTeX/PDF output,
the bullet will be suppressed for nicer output.
This commit is contained in:
John MacFarlane 2019-01-02 11:38:44 -08:00
parent f1d83aea12
commit 308e4671d6

View file

@ -2619,7 +2619,6 @@ Pandoc supports task lists, using the syntax of GitHub-Flavored Markdown.
- [ ] an unchecked task list item
- [x] checked item
### Definition lists ###
#### Extension: `definition_lists` ####