SVG schema setup problems....
Have a large project with a lot of SVG,
I added *.svg in Settings > File Types to the list for XML Files, as this seems the best fit.
Under Schema and DTD I added the following:
http://www.w3.org/2000/svg -> c:\schema\svg11.dtd
http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd -> c:\schema\svg11.dtd
Upon opening up a SVG file with the following:
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg width="5cm" height="4cm" version="1.1" xmlns="http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<g id="mytag"/>
</svg>
The above will complain that:
Attribute xmlns should have fixed value http://www.w3.org/2000/svg but after changing it to that all svg tags all start failing...
what am i donig wrong?
请先登录再写评论。