Skip to content

Commit 0604fa2

Browse files
committed
Fix id replacements in SVGs with clipping paths.
This fixes `--embed-resources` when SVGs have `clip-path` attributes. Closes #9420.
1 parent ea23868 commit 0604fa2

File tree

3 files changed

+26
-0
lines changed

3 files changed

+26
-0
lines changed

src/Text/Pandoc/SelfContained.hs

+4
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,10 @@ convertTags (t@(TagOpen tagname as):ts)
185185
case T.uncons x of
186186
Just ('#', x') -> (k, "#" <> svgid <> "_" <> x')
187187
_ -> (k, x)
188+
addIdPrefix ("clip-path", x) = ("clip-path",
189+
case T.stripPrefix "url(#" x of
190+
Just x' -> "url(#" <> svgid <> "_" <> x'
191+
Nothing -> x)
188192
addIdPrefix kv = kv
189193
let ensureUniqueId (TagOpen tname ats) =
190194
TagOpen tname (map addIdPrefix ats)

test/command/9420.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
```
2+
% pandoc --embed-resources
3+
![](command/9420.svg)
4+
^D
5+
<p><svg id="svg_e1815ef374a63cf552e4" width="504pt" height="360pt" viewBox="0 0 504 360">
6+
<defs>
7+
<clipPath id="svg_e1815ef374a63cf552e4_clip1-c3ce354c">
8+
<path />
9+
</clipPath>
10+
</defs>
11+
<g clip-path="url(#svg_e1815ef374a63cf552e4_clip1-c3ce354c)" clip-rule="nonzero"></g>
12+
</svg></p>
13+
```

test/command/9420.svg

+9
Loading

0 commit comments

Comments
 (0)