Ripper and RevealJS
This document demonstrates the ripper Quarto extension within a RevealJS presentation.
Presentation
Open presentation in a new tab: qripper-revealjs-slides.qmd
Source
You must set echo: true in the YAML front matter to ensure that code chunks are displayed in the slides and, thus, can be extracted by the ripper extension.
---
title: "Ripper with RevealJS"
author: "Your Name"
format: revealjs
echo: true
extensions:
ripper:
script-links-position: top
filters: [ripper]
---
## Slide
This is a RevealJS presentation testing the ripper extension.
## R Code
```{r}
# Load data
data <- iris
summary(data)
```
## Python Code
```{python}
arr = [1, 2, 3, 4, 5]
print(sum(arr) / len(arr))
```
## Conclusion
Results and findings.