mirror of
https://github.com/stevenproctor/dotfiles.git
synced 2026-01-28 14:19:55 -06:00
to have a sample for playing with nested code language behavior in markdown and org mode with various languages
22 lines
161 B
Markdown
22 lines
161 B
Markdown
# Some heading
|
|
|
|
```fennel
|
|
(print)
|
|
(* 21
|
|
(+ 1 3))
|
|
```
|
|
|
|
some clojure
|
|
|
|
```clojure
|
|
(print
|
|
)(* 21
|
|
(+ 1 3))
|
|
```
|
|
|
|
some python
|
|
|
|
```python
|
|
print( 1 + 3 ) + 3
|
|
```
|