RevealJS Support
The {quarto-custom-callout} extension works with RevealJS presentations. Custom colors, emoji icons, FontAwesome icons, and appearance styles are all supported. Collapsible callouts are not available in RevealJS due to the nature of the presentation format. For more details on custom callout types in Quarto, see the Quarto Callout Types documentation and quarto-dev/quarto-cli#1328.
Usage
To use custom callouts in a RevealJS presentation, set format: revealjs and define your callouts under custom-callout as usual:
---
title: "My Presentation"
format: revealjs
custom-callout:
todo:
icon-symbol: "📝"
color: "pink"
thumbs-up:
title: "Great job!"
icon: true
icon-symbol: "fa-thumbs-up"
color: "#008000"
filters:
- custom-callout
---Then use them in your slides:
## Slide Title
::: todo
Remember to complete this section.
:::
::: thumbs-up
Great job on completing this task!
:::