Are pluggins still requiring self_contained: false ?
cderv opened this issue · 0 comments
cderv commented
Currently we are forcing to use self_contained: false
when using plugins
revealjs/R/revealjs_presentation.R
Lines 180 to 184 in 21239cf
I believe this is because Pandoc documents it this way:
https://pandoc.org/MANUAL.html#option--self-contained
However, it seems it is working correctly
Test using Quarto
---
title: "Untitled"
format:
revealjs:
slide-level: 2
self-contained: true
---
# Main header
::: notes
Main header notes
:::
## Subheader 1
::: notes
Subheader 1 notes
:::
## Subheader 2
::: notes
Subheader notes
:::
So wondering