Skip to content

Commit 105f093

Browse files
committed
split test files to cover all code-annotations
1 parent 820c998 commit 105f093

File tree

3 files changed

+64
-0
lines changed

3 files changed

+64
-0
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
title: Code annotaton and incremental
3+
format:
4+
revealjs:
5+
incremental: true
6+
code-annotations: below
7+
_quarto:
8+
tests:
9+
revealjs:
10+
ensureHtmlElements:
11+
- []
12+
- ['.fragment']
13+
ensureFileRegexMatches:
14+
- []
15+
- []
16+
---
17+
18+
## First slide
19+
20+
## Slides with annotations
21+
22+
``` python
23+
1 + 1 # <1>
24+
x = 2 # <2>
25+
x + 3 # <3>
26+
```
27+
28+
1. Note 1
29+
2. Note 2
30+
3. Note 3
31+
32+
## Last slide
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
title: Code annotaton and incremental
3+
format:
4+
revealjs:
5+
incremental: true
6+
code-annotations: select
7+
_quarto:
8+
tests:
9+
revealjs:
10+
ensureHtmlElements:
11+
- []
12+
- ['.fragment']
13+
ensureFileRegexMatches:
14+
- []
15+
- []
16+
---
17+
18+
## First slide
19+
20+
## Slides with annotations
21+
22+
``` python
23+
1 + 1 # <1>
24+
x = 2 # <2>
25+
x + 3 # <3>
26+
```
27+
28+
1. Note 1
29+
2. Note 2
30+
3. Note 3
31+
32+
## Last slide

0 commit comments

Comments
 (0)