debian-mirror-gitlab/vendor/gems/ipynbdiff/spec/testdata/svg/expected.md

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
504 B
Markdown
Raw Normal View History

2022-08-13 15:12:31 +05:30
%% Cell type:code id:5 tags:
``` python
from IPython.display import SVG, display
svg = """<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
<circle cx="50" cy="50" r="50"/>
</svg>"""
display(SVG(svg))
```
%% Output
![](data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="50"/></svg>)
![](data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="50"/></svg>)