summaryrefslogtreecommitdiff
path: root/subplot.md
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers@digital-scurf.org>2021-05-01 13:39:44 +0100
committerDaniel Silverstone <dsilvers@digital-scurf.org>2021-05-01 13:39:44 +0100
commitbfbcaf9eedb9f2339494c3ee16d5761121631342 (patch)
treee84ffbca6bc687f31cb9db36cdd5c879652dbcad /subplot.md
parent1315a361f8479d29d20128a35665aab2b84e13ed (diff)
downloadsubplot-bfbcaf9eedb9f2339494c3ee16d5761121631342.tar.gz
bin: sp-filter -> subplot-filter
Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
Diffstat (limited to 'subplot.md')
-rw-r--r--subplot.md14
1 files changed, 7 insertions, 7 deletions
diff --git a/subplot.md b/subplot.md
index 940843e..9c53da4 100644
--- a/subplot.md
+++ b/subplot.md
@@ -75,7 +75,7 @@ Subplot actually consists mainly of two separate programs:
**subplot docgen** for generating output documents, and **subplot codegen** for
generating the test program. There are a couple of additional tools
(**subplot metadata** for reporting meta data about a Subplot document, and
-**sp-filter** for doing the document generation as a Pandoc filter).
+**subplot-filter** for doing the document generation as a Pandoc filter).
Thus a more detailed architecture view is shown below.
@@ -2630,7 +2630,7 @@ and is not referenced as an external image.
~~~scenario
given file pikchr.md
and an installed subplot
-when I run pandoc --filter sp-filter pikchr.md -o pikchr.html
+when I run pandoc --filter subplot-filter pikchr.md -o pikchr.html
then file pikchr.html matches regex /img src="data:image/svg\+xml;base64,/
~~~
@@ -2669,7 +2669,7 @@ HTML output, not referenced as an external image.
given file dot.md
and file b.yaml
and an installed subplot
-when I run pandoc --filter sp-filter dot.md -o dot.html
+when I run pandoc --filter subplot-filter dot.md -o dot.html
then file dot.html matches regex /img src="data:image/svg\+xml;base64,/
~~~
@@ -2711,7 +2711,7 @@ the HTML output, not referenced as an external image.
given file plantuml.md
and file b.yaml
and an installed subplot
-when I run pandoc --filter sp-filter plantuml.md -o plantuml.html
+when I run pandoc --filter subplot-filter plantuml.md -o plantuml.html
then file plantuml.html matches regex /img src="data:image/svg\+xml;base64,/
~~~
@@ -2792,7 +2792,7 @@ HTML output, not referenced as an external image.
given file roadmap.md
and file b.yaml
and an installed subplot
-when I run pandoc --filter sp-filter roadmap.md -o roadmap.html
+when I run pandoc --filter subplot-filter roadmap.md -o roadmap.html
then file roadmap.html matches regex /img src="data:image/svg\+xml;base64,/
~~~
@@ -2907,7 +2907,7 @@ abstract syntax tree, serializes that into JSON, gives that to the
filter (via the standard input), gets a modified abstract syntax tree
(again as JSON, via the filter's standard output).
-Subplot supports this via the **sp-filter** executable. It is built
+Subplot supports this via the **subplot-filter** executable. It is built
using the same internal logic as Subplot's docgen. The interface is
merely different to be usable as a Pandoc filter.
@@ -2919,7 +2919,7 @@ what the input files are like.
~~~scenario
given file justdata.md
and an installed subplot
-when I run pandoc --filter sp-filter justdata.md -o justdata.html
+when I run pandoc --filter subplot-filter justdata.md -o justdata.html
then file justdata.html matches regex /does not have a YAML metadata/
~~~