aboutsummaryrefslogtreecommitdiff
path: root/test/command/3752.md
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2021-05-28 13:58:44 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2021-05-28 13:58:44 -0700
commitb6b2331fdcee37f1bfb3fcc21816d73d6d56cfae (patch)
treeb4bd568a3ecd22039fd8df9853c2d3b0bc52ae10 /test/command/3752.md
parente72d2dd962f2c3073eb4b7a461c3c717f6a61e1a (diff)
downloadpandoc-b6b2331fdcee37f1bfb3fcc21816d73d6d56cfae.tar.gz
Support `rebase_relative_paths` for commonmark based formats.
(Including `gfm`.)
Diffstat (limited to 'test/command/3752.md')
-rw-r--r--test/command/3752.md16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/command/3752.md b/test/command/3752.md
index df8af0ba1..2e96b531e 100644
--- a/test/command/3752.md
+++ b/test/command/3752.md
@@ -42,3 +42,19 @@ A spider: [spider]
<h1 id="chapter-two">Chapter two</h1>
<p>A spider: <img src="command/chap2/spider.png" alt="spider" /></p>
```
+
+```
+% pandoc command/chap1/text.md command/chap2/text.md -f commonmark+rebase_relative_paths -t html
+^D
+<h1>Chapter one</h1>
+<p>A spider: <img src="command/chap1/spider.png" alt="spider" /></p>
+<p>Another spider: <img src="command/chap2/spider.png" alt="another spider" /></p>
+<p>The moon: <img src="command/chap1/../../lalune.jpg" alt="moon" /></p>
+<p>Link to <a href="command/chap1/spider.png">spider picture</a>.</p>
+<p>URL left alone: <a href="https://pandoc.org/MANUAL.html">manual</a>.</p>
+<p>Absolute path left alone: <a href="/foo/bar/baz.png">absolute</a>.</p>
+<p>Link to fragment: <a href="#chapter-two">chapter two</a>.</p>
+<p>Empty path: <a href="">empty</a>.</p>
+<h1>Chapter two</h1>
+<p>A spider: <img src="command/chap2/spider.png" alt="spider" /></p>
+```