Skip to content

Commit c94cded

Browse files
committed
regression test
1 parent 2338e35 commit c94cded

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
title: "Minimal example"
3+
format: gfm
4+
keep-md: true
5+
---
6+
7+
8+
::: {.cell execution_count=1}
9+
``` {.python .cell-code}
10+
import matplotlib.pyplot as plt
11+
import numpy as np
12+
13+
x = np.linspace(0,1,10)
14+
y = np.sin(x)
15+
16+
plt.plot(x,y)
17+
```
18+
19+
::: {.cell-output .cell-output-display}
20+
![](10358_files/figure-commonmark/fig-sin-output-1.png){#fig-sin}
21+
:::
22+
:::
23+
24+

0 commit comments

Comments
 (0)