aboutsummaryrefslogtreecommitdiff
path: root/test/command/8869.md
blob: eba564d38c124c85c2807198d121eebc61b0c6ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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"
]
```