diff options
| author | John MacFarlane <[email protected]> | 2024-06-10 10:59:16 -0700 |
|---|---|---|
| committer | John MacFarlane <[email protected]> | 2024-06-10 10:59:16 -0700 |
| commit | f2092f82ff1741a3b2a34f9fc53dc39fc6dccda6 (patch) | |
| tree | ea57118c6d8b7ebe41417fffdd9bb2c36fab7a11 /test/command/9652.md | |
| parent | 71e17b83b9c384e466d0a67753350280841557db (diff) | |
SelfContained: only create svg elements for SVG images when...
...the image has the class `inline-svg`. Otherwise just use a
`data` URI as we do with other images.
Closes #9787.
Diffstat (limited to 'test/command/9652.md')
| -rw-r--r-- | test/command/9652.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/command/9652.md b/test/command/9652.md index 236b0a9bb..10c720579 100644 --- a/test/command/9652.md +++ b/test/command/9652.md @@ -1,9 +1,9 @@ ```` % pandoc -f markdown -t html --embed-resources ```{=html} -<img class="something" src="command/9652.svg" /> +<img class="something inline-svg" src="command/9652.svg" /> ``` ^D -<svg id="svg_b627f92299158b36552b" role="img" width="504.00pt" height="360.00pt" viewBox="0 0 504.00 360.00" class="something please-do-not-delete-me"> +<svg id="svg_b627f92299158b36552b" role="img" width="504.00pt" height="360.00pt" viewBox="0 0 504.00 360.00" class="something inline-svg please-do-not-delete-me"> </svg> ```` |
