summaryrefslogtreecommitdiff
path: root/subplot.md
diff options
context:
space:
mode:
Diffstat (limited to 'subplot.md')
-rw-r--r--subplot.md30
1 files changed, 26 insertions, 4 deletions
diff --git a/subplot.md b/subplot.md
index f0dfa9b..ff1d702 100644
--- a/subplot.md
+++ b/subplot.md
@@ -1456,17 +1456,22 @@ or functions files.
~~~scenario
given file images.md
and file b.yaml
+and file other.yaml
and file f.py
+and file other.py
and file foo.bib
and file bar.bib
when I run sp-meta images.md
then output matches /source: images.md/
and output matches /source: b.yaml/
+and output matches /source: other.yaml/
and output matches /source: f.py/
+and output matches /source: other.py/
and output matches /source: foo.bib/
and output matches /source: bar.bib/
and output matches /source: image.gif/
and output matches /bindings: b.yaml/
+and output matches /bindings: other.yaml/
and output matches /functions: f.py/
~~~
@@ -1474,14 +1479,25 @@ and output matches /functions: f.py/
~~~{#images.md .file .markdown .numberLines}
---
title: Document refers to external images
-bindings: b.yaml
-functions: f.py
+bindings:
+- b.yaml
+- other.yaml
+functions:
+- f.py
+- other.py
bibliography: [foo.bib, bar.bib]
...
![alt text](image.gif)
~~~
+~~~{#other.yaml .file .yaml .numberLines}
+[]
+~~~
+
+~~~{#other.py .file .python .numberLines}
+~~~
+
~~~{#foo.bib .file .numberLines}
@book{foo2020,
author = "James Random",
@@ -1827,6 +1843,12 @@ This content is foobarish
title: "Subplot"
author: The Subplot project
date: work in progress
-bindings: subplot.yaml
-functions: subplot.py
+bindings:
+- subplot.yaml
+- runcmd.yaml
+- files.yaml
+functions:
+- subplot.py
+- runcmd.py
+- files.py
...