Skip to content

Commit

Permalink
Add a test for code annotation and incremental in revealjs
Browse files Browse the repository at this point in the history
  • Loading branch information
cderv committed Oct 23, 2024
1 parent bb76dec commit 820c998
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions tests/docs/smoke-all/2024/10/23/7142.qmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---
title: Code annotaton and incremental
format:
revealjs:
incremental: true
code-annotations: hover
_quarto:
tests:
revealjs:
ensureHtmlElements:
- []
- ['.fragment']
ensureFileRegexMatches:
- []
- []
---

## First slide

## Slides with annotations

``` python
1 + 1 # <1>
x = 2 # <2>
x + 3 # <3>
```

1. Note 1
2. Note 2
3. Note 3

## Last slide

0 comments on commit 820c998

Please sign in to comment.