In Quarto markdown I am creating a revealjs presentation and I want a list in which the last item is shown after the others. If I put a pause within the list (or I put the last item within a fragment) I get extra space before the last item. This is a MWE:
---
format:
revealjs:
slide-transition: slide
self-contained: true
---
## List without pause
- First item
- Second item
- Third item
## List with pause
- First item
- Second item
. . .
- Third item
Is there a way to have the last item shown after a pause and with the same spacing as the others?