blob: d759944c7d33f7cacb29a092cdb53ad757fd1eb2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<svg xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<text id="myText">Used Text Element
<set attributeName="display" to="none"/>
</text>
</defs>
<use xlink:href="#myText" x="20" y="40"/>
<text x="20" y="60">Normal Text Element
<set attributeName="display" to="none"/>
</text>
</svg>
|