Domel wrote:
Example of my type="xml" Support SVG <content type="xml" xml:lang="en"> <text xmlns="http://www.w3.org/2000/svg"> Hello, out there </text> </content>
SVG doesn't define embedding in other languages apart from providing a whole SVG document as defined by the SVG spec, e.g. in an "svg" element.
Actually, you must provide an SVG viewport, which is done with the "svg" element, and a viewport can be a self-contained SVG document.
<content type="image/svg+xml" xml:lang="en"> <svg xmlns="http://www.w3.org/2000/svg"> <text>Hello, out there</text> </svg> </content>
-- Thomas Broyer
