diff options
author | John MacFarlane <jgm@berkeley.edu> | 2019-01-02 11:38:44 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2019-01-02 11:38:44 -0800 |
commit | 308e4671d6291aaab4651be99653703b3490cb15 (patch) | |
tree | 64124701acd0c143c537af486aff64747287d4af | |
parent | f1d83aea12b93b31f5218bed75bd0e9d8d373cb6 (diff) | |
download | pandoc-308e4671d6291aaab4651be99653703b3490cb15.tar.gz |
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.
-rw-r--r-- | MANUAL.txt | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/MANUAL.txt b/MANUAL.txt index 5c7e13e41..9cdf58772 100644 --- a/MANUAL.txt +++ b/MANUAL.txt @@ -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` #### |