aboutsummaryrefslogtreecommitdiff
path: root/test/command
diff options
context:
space:
mode:
authorAlbert Krewinkel <[email protected]>2025-08-14 19:32:39 +0200
committerAlbert Krewinkel <[email protected]>2025-08-14 19:35:37 +0200
commitde31a9f1305bc84e27bc255dac6383c7278529f2 (patch)
treeb784936f676cec199e88445db89cb3207ab07956 /test/command
parenta6a5be132a5aa53f9744850f33a52e25aecf2628 (diff)
Org reader: accept quoted values as argument values.
Fixes: #8869
Diffstat (limited to 'test/command')
-rw-r--r--test/command/8869.md20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/command/8869.md b/test/command/8869.md
new file mode 100644
index 000000000..eba564d38
--- /dev/null
+++ b/test/command/8869.md
@@ -0,0 +1,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"
+]
+```