File tree 3 files changed +26
-0
lines changed
3 files changed +26
-0
lines changed Original file line number Diff line number Diff line change @@ -185,6 +185,10 @@ convertTags (t@(TagOpen tagname as):ts)
185
185
case T. uncons x of
186
186
Just (' #' , x') -> (k, " #" <> svgid <> " _" <> x')
187
187
_ -> (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)
188
192
addIdPrefix kv = kv
189
193
let ensureUniqueId (TagOpen tname ats) =
190
194
TagOpen tname (map addIdPrefix ats)
Original file line number Diff line number Diff line change
1
+ ```
2
+ % pandoc --embed-resources
3
+ 
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
+ ```
You can’t perform that action at this time.
0 commit comments