debian-mirror-gitlab/vendor/gems/ipynbdiff/spec/testdata/svg/expected.md
2022-08-13 15:12:31 +05:30

504 B

%% Cell type:code id:5 tags:

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>)