mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-02 05:35:38 +00:00
21 lines
386 B
Markdown
21 lines
386 B
Markdown
Org arguments can either be single words, or quoted.
|
|
|
|
```
|
|
% pandoc -f org -t native
|
|
#+begin_src jupyter-julia :exports both
|
|
1 + 2
|
|
#+end_src
|
|
|
|
#+begin_src jupyter-julia :exports "both"
|
|
1 + 2
|
|
#+end_src
|
|
^D
|
|
[ CodeBlock
|
|
( "" , [ "julia" , "code" ] , [ ( "exports" , "both" ) ] )
|
|
"1 + 2\n"
|
|
, CodeBlock
|
|
( "" , [ "julia" , "code" ] , [ ( "exports" , "both" ) ] )
|
|
"1 + 2\n"
|
|
]
|
|
```
|