quarto-dev / quarto-cli

Open-source scientific and technical publishing system built on Pandoc.
https://quarto.org
Other
3.86k stars 313 forks source link

Lists in blockquotes in revealjs become`incremental` not blockquoted #10405

Closed mine-cetinkaya-rundel closed 2 months ago

mine-cetinkaya-rundel commented 2 months ago

Quarto 1.5.55.

Reprex:

---
format: 
  revealjs:
    incremental: false
---

## Items incremental + not styled as blockquote

Itemized:

> -   hi
> -   hello
> -   mello

Enumerated:

>1.  hi
>2.  hello
>3.  mello

## Items non-incremental, as expected

Itemized:

-   hi
-   hello
-   mello

Enumerated:

1.  hi
2.  hello
3.  mello
mcanouil commented 2 months ago

That's not a bug. That's a Pandoc feature.

https://pandoc.org/MANUAL.html#incremental-lists

The solution is documented:


## Items non-incremental + styled as blockquote

Itemized:

> ::: wrapper
> -   hi
> -   hello
> -   mello
> :::

Enumerated:

> ::: wrapper
> 1.  hi
> 2.  hello
> 3.  mello
> :::
cderv commented 2 months ago

It is among documentation update to-do list 😞

I'll close this one and be sure to deal with the other one in next documentation batch