Welcome to mirror list, hosted at ThFree Co, Russian Federation.

expected.md « svg « testdata « spec « ipynbdiff « gems « vendor - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a5a167d31c50d50e49798b41607dd0d052f1fc4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
%% 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>)