summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2021-12-11 10:52:54 +0200
committerLars Wirzenius <liw@liw.fi>2021-12-11 10:54:45 +0200
commitc64ed7b006943365acdf78feb86ebcff63749fda (patch)
tree102a5a0f50c07f531aa812a543869d6c83d2c0f7
parent6e6cffca71c75a1f8c5f460db1348a070262ccff (diff)
downloadpandoc-filter-diagram-c64ed7b006943365acdf78feb86ebcff63749fda.tar.gz
fix: use the right command line tool in scenarios
Sponsored-by: author
-rw-r--r--pandoc-filter-diagram.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/pandoc-filter-diagram.md b/pandoc-filter-diagram.md
index 86081d4..12520cb 100644
--- a/pandoc-filter-diagram.md
+++ b/pandoc-filter-diagram.md
@@ -47,7 +47,7 @@ and is not referenced as an external image.
~~~scenario
given an installed Rust program pandoc-filter-diagram
given file pikchr.md
-when I run pandoc --filter subplot-filter pikchr.md -o pikchr.html
+when I run pandoc --filter pandoc-filter-diagram pikchr.md -o pikchr.html
then file pikchr.html matches regex /img src="data:image/svg\+xml;base64,/
~~~
@@ -84,7 +84,7 @@ HTML output, not referenced as an external image.
~~~scenario
given an installed Rust program pandoc-filter-diagram
given file dot.md
-when I run pandoc --filter subplot-filter dot.md -o dot.html
+when I run pandoc --filter pandoc-filter-diagram dot.md -o dot.html
then file dot.html matches regex /img src="data:image/svg\+xml;base64,/
~~~
@@ -202,7 +202,7 @@ HTML output, not referenced as an external image.
~~~scenario
given an installed Rust program pandoc-filter-diagram
given file roadmap.md
-when I run pandoc --filter subplot-filter roadmap.md -o roadmap.html
+when I run pandoc --filter pandoc-filter-diagram roadmap.md -o roadmap.html
then file roadmap.html matches regex /img src="data:image/svg\+xml;base64,/
~~~