Hallo Experts, I'm creating my svg by xslt. Everthing works fine so-far, but now I want to declare a doctype specifying additional attributes for the svg tags and later on specify additional elements at all.
My problem is to create teh follwing text in the output svg : <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-flat- 20030114.dtd" [ <!ATTLIST svg xmlns:attrib CDATA #IMPLIED > <!ATTLIST g attrib:spice CDATA #IMPLIED >]> I tries this: <svg ..... > <xsl:output indent="yes" method="xml" version="1.0" encoding="UTF-8" cdata-section-elements="script" doctype-public="-//W3C//DTD SVG 1.1//EN" doctype-system="http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-flat- 20030114.dtd [ <!ATTLIST svg xmlns:attrib CDATA #IMPLIED > <!ATTLIST g attrib:spice CDATA #IMPLIED > ]" /> But as expected the quotes are not in the right position. So, how do I do this right ?? Thanks Rolf ----- To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yahoo.com/group/svg-developers and click "edit my membership" ---- Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/svg-developers/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/

