By default, these writers produce lists that display “all at once.”
If you want your lists to display incrementally (one item at a time),
use the -i
option. If you want a particular list to depart
from the default, put it in a div
block with class
incremental
or nonincremental
. So, for
example, using the fenced div
syntax, the following would
be incremental regardless of the document default:
::: incremental
- Eat spaghetti
- Drink wine
:::
or
::: nonincremental
- Eat spaghetti
- Drink wine
:::
While using incremental
and nonincremental
divs is the recommended method of setting incremental lists on a
per-case basis, an older method is also supported: putting lists inside
a blockquote will depart from the document default (that is, it will
display incrementally without the -i
option and all at once
with the -i
option):
> - Eat spaghetti
> - Drink wine
Both methods allow incremental and nonincremental lists to be mixed in a single document.
If you want to include a block-quoted list, you can work around this behavior by putting the list inside a fenced div, so that it is not the direct child of the block quote:
> ::: wrapper
> - a
> - list in a quote
> :::