-
Hello, I think the problem comes for an interaction among the slide-level and the 3-dots; but I don't know if it is intentional or it is a bug. Below there is an example with slide-level fixed to 2; in that case, the pauses created with the 3-dots works for slides that start with a second level header, but it doesn't work if you start a new slide with ---
title: "Problem with `. . .` to make pauses in rvealjs presentations"
date: 2023-05-21
format:
revealjs:
slide-level: 2
---
## If the slide starts with `##` it works
Should be shown first
. . .
Should be shown latter
---
### If the slide starts with `###` it doesn't work
Should be shown first
. . .
Should be shown latter
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
This is a behavior of Pandoc that changed in pandoc 3.0 that is now shipped with Quarto. It seems that with the changed that was made to prevent fragment div to be created in non-slide format (jgm/pandoc#8281), it is not possible to create pause in other type of headers ---
title: "Problem with `. . .` to make pauses in rvealjs presentations"
date: 2023-05-21
format:
revealjs:
slide-level: 2
---
## Slide Header
### If the pause is under a sub header, it doesn't work
Should be shown first
. . .
Should be shown latter If you try to convert with Pandoc only, you'll get the quarto pandoc test2.qmd --from markdown --to revealjs --slide-level=2 This could be seen as a wrong fix for jgm/pandoc#8281 in Pandoc However not that you can create fragment content in slide directly for complex content like a sub header in slide ---
title: "Problem with `. . .` to make pauses in rvealjs presentations"
date: 2023-05-21
format:
revealjs:
slide-level: 2
---
## If the slide starts with `##` it works
Should be shown first
. . .
Should be shown latter
---
::: {.fragment}
### If the slide starts with `###` it doesn't work
Should be shown first
:::
::: {.fragment}
Should be shown latter
:::
Hope it helps |
Beta Was this translation helpful? Give feedback.
This is a behavior of Pandoc that changed in pandoc 3.0 that is now shipped with Quarto.
It seems that with the changed that was made to prevent fragment div to be created in non-slide format (jgm/pandoc#8281), it is not possible to create pause in other type of headers
If you try to convert with Pandoc only, you'll get the
. . .
as is