I would like to add a Callout Block to a {.incremental} list in a slide using revealjs. Here is some reproducible code:
---
title: "Callout Block in revealjs"
format: revealjs
---
## Slide
::: {.incremental}
- Here some text
::: {.callout-tip}
## Tip with Title
This is an example of a callout with a title.
:::
:::
Output:
As we can see from the output, the callout block is not incremental like the text above. So I was wondering if it is possible to add callout blocks to an incremental list in revealjs Quarto?

As per the quarto docs,
So it seems
.incrementalworks for lists only. But since you want the incremental behavior for both list items and callout blocks, consider using.fragmentinstead,