summaryrefslogtreecommitdiff
path: root/subplot.md
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers+gitlab@digital-scurf.org>2023-07-10 18:47:46 +0000
committerDaniel Silverstone <dsilvers+gitlab@digital-scurf.org>2023-07-10 18:47:46 +0000
commit7bb4e0f3bc05315c90f6d89552aa13658250e118 (patch)
tree36f87fc7904e1339fb6d0ebd3985098aea43da3d /subplot.md
parent38e985bb506235832d2de358fe93834139f2db30 (diff)
parentb98e4e25c1ad67381f58432f8b29279a9e7dcb04 (diff)
downloadsubplot-7bb4e0f3bc05315c90f6d89552aa13658250e118.tar.gz
Merge branch 'liw/unbib' into 'main'
feat! drop support for bibliographies in document metadata Closes #326 See merge request subplot/subplot!346
Diffstat (limited to 'subplot.md')
-rw-r--r--subplot.md31
1 files changed, 0 insertions, 31 deletions
diff --git a/subplot.md b/subplot.md
index f2fee6d..06e9e38 100644
--- a/subplot.md
+++ b/subplot.md
@@ -2644,8 +2644,6 @@ and file b.yaml
and file other.yaml
and file f.py
and file other.py
-and file foo.bib
-and file bar.bib
and file expected.json
and an installed subplot
when I run subplot metadata images.subplot
@@ -2654,8 +2652,6 @@ and stdout contains "source: b.yaml"
and stdout contains "source: other.yaml"
and stdout contains "source: f.py"
and stdout contains "source: other.py"
-and stdout contains "source: foo.bib"
-and stdout contains "source: bar.bib"
and stdout contains "source: image.gif"
and stdout contains "bindings: b.yaml"
and stdout contains "bindings: other.yaml"
@@ -2676,7 +2672,6 @@ impls:
python:
- f.py
- other.py
-bibliography: [foo.bib, bar.bib]
~~~
~~~{#images.md .file .markdown .numberLines}
@@ -2690,34 +2685,12 @@ bibliography: [foo.bib, bar.bib]
~~~{#other.py .file .python .numberLines}
~~~
-~~~{#foo.bib .file .numberLines}
-@book{foo2020,
- author = "James Random",
- title = "The Foo book",
- publisher = "The Internet",
- year = 2020,
- address = "World Wide Web",
-}
-~~~
-
-~~~{#bar.bib .file .numberLines}
-@book{foo2020,
- author = "James Random",
- title = "The Bar book",
- publisher = "The Internet",
- year = 2020,
- address = "World Wide Web",
-}
-~~~
-
~~~{#expected.json .file .json}
{
"title": "Document refers to external images",
"sources": [
"b.yaml",
- "bar.bib",
"f.py",
- "foo.bib",
"image.gif",
"images.md",
"images.subplot",
@@ -2734,10 +2707,6 @@ bibliography: [foo.bib, bar.bib]
"other.py"
]
},
- "bibliographies": [
- "bar.bib",
- "foo.bib"
- ],
"files": [],
"scenarios": []
}