- Unused XML namespace declarations *are supposed* to be removed - XML namespace declarations that are used as prefix for elements/attributes *must not* be removed
11 lines
481 B
XML
11 lines
481 B
XML
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:foo="http://foo/" xmlns:bar="http://bar/" xmlns:baz="http://baz/">
|
|
<!-- <Jack & Jill> -->
|
|
<title>2 < 5</title>
|
|
<desc>Peanut Butter & Jelly</desc>
|
|
<glyph id="lt" unicode="<"/>
|
|
<glyph id="amp" unicode="&"/>
|
|
<glyph id="gt" unicode=">" bar:attr="xyz"/>
|
|
<baz:glyph id="quot" unicode="""/>
|
|
<text x="50" y="50">ΉTML & CSS</text>
|
|
</svg>
|