diff options
Diffstat (limited to 'test/command')
-rw-r--r-- | test/command/5881.md | 2 | ||||
-rw-r--r-- | test/command/5904.md | 2 | ||||
-rw-r--r-- | test/command/A.txt | 1 | ||||
-rw-r--r-- | test/command/B.txt | 1 | ||||
-rw-r--r-- | test/command/C.txt | 1 | ||||
-rw-r--r-- | test/command/D.txt | 1 | ||||
-rw-r--r-- | test/command/defaults1.yaml | 1 | ||||
-rw-r--r-- | test/command/defaults2.yaml | 4 |
8 files changed, 11 insertions, 2 deletions
diff --git a/test/command/5881.md b/test/command/5881.md index 3c3970a89..e29166959 100644 --- a/test/command/5881.md +++ b/test/command/5881.md @@ -1,5 +1,5 @@ ``` -% pandoc -t markdown -s -H D.txt -d defaults1.yaml -d defaults2.yaml +% pandoc -t markdown -s -H command/D.txt -d command/defaults1.yaml -d command/defaults2.yaml Ok ^D here's d diff --git a/test/command/5904.md b/test/command/5904.md index fdc29407d..326a0f622 100644 --- a/test/command/5904.md +++ b/test/command/5904.md @@ -1,5 +1,5 @@ ``` -% pandoc -s -t markdown -H test/B.txt --variable header-includes:foo +% pandoc -s -t markdown -H command/B.txt --variable header-includes:foo Hi ^D foo diff --git a/test/command/A.txt b/test/command/A.txt new file mode 100644 index 000000000..9e365c806 --- /dev/null +++ b/test/command/A.txt @@ -0,0 +1 @@ +this is a diff --git a/test/command/B.txt b/test/command/B.txt new file mode 100644 index 000000000..15e82baab --- /dev/null +++ b/test/command/B.txt @@ -0,0 +1 @@ +here is b diff --git a/test/command/C.txt b/test/command/C.txt new file mode 100644 index 000000000..ffe50d0ab --- /dev/null +++ b/test/command/C.txt @@ -0,0 +1 @@ +and this is c diff --git a/test/command/D.txt b/test/command/D.txt new file mode 100644 index 000000000..6a06fd34c --- /dev/null +++ b/test/command/D.txt @@ -0,0 +1 @@ +here's d diff --git a/test/command/defaults1.yaml b/test/command/defaults1.yaml new file mode 100644 index 000000000..22b18b3c4 --- /dev/null +++ b/test/command/defaults1.yaml @@ -0,0 +1 @@ +include-in-header: command/A.txt diff --git a/test/command/defaults2.yaml b/test/command/defaults2.yaml new file mode 100644 index 000000000..4b728fa74 --- /dev/null +++ b/test/command/defaults2.yaml @@ -0,0 +1,4 @@ +include-in-header: +- command/B.txt +- command/C.txt + |