proto markdown we want to convert in a notebook
Browse files- x_md2nb01/_convert.sh +2 -0
- x_md2nb01/mymdsrc.md +18 -0
x_md2nb01/_convert.sh
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
|
2 |
+
jupyter-book myst init mymdsrc.md
|
x_md2nb01/mymdsrc.md
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Something we want in a notebook
|
2 |
+
|
3 |
+
## Some subchapter
|
4 |
+
|
5 |
+
+++
|
6 |
+
|
7 |
+
* Later we would add sample code
|
8 |
+
|
9 |
+
```{code-cell}
|
10 |
+
import os
|
11 |
+
print(os.getcwd())
|
12 |
+
```
|
13 |
+
|
14 |
+
---
|
15 |
+
|
16 |
+
# Some more...
|
17 |
+
|
18 |
+
* voila
|