Holger Will wrote: > How i understand it , following Robin Berjon, a basic SVG file should > look like this: > > <svg xmlns="http://www.w3.org/2000/svg"> > </svg> > > no <?xml?> ! no <!DOCTYPE> ! > only the namespace (xmlns="...") > > note: and if you use xlink dont forget > xmlns:xlink="http://www.w3.org/1999/xlink" > > my empty svg template looks like this: > > <svg xmlns="http://www.w3.org/2000/svg" > xmlns:xlink="http://www.w3.org/1999/xlink"> > <title></title> > <desc></desc> > </svg>
That is correct. Note that you will want the XML Prolog (<?xml ...?>) if you are using an encoding other than UTF-8 or UTF-16. -- Robin Berjon Research Scientist Expway, http://expway.com/ ----- 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/

