multi-nested langage test md and org files

to have a sample for playing with nested code language behavior in
markdown and org mode with various languages
This commit is contained in:
2022-12-22 21:46:27 -06:00
parent e2bd2b2497
commit a47e5ab7a8
2 changed files with 71 additions and 0 deletions

21
test.md Normal file
View File

@@ -0,0 +1,21 @@
# Some heading
```fennel
(print)
(* 21
(+ 1 3))
```
some clojure
```clojure
(print
)(* 21
(+ 1 3))
```
some python
```python
print( 1 + 3 ) + 3
```