Mark S. ha scritto:
You can load a svg file in FF, but that's not the same as embedding.
The industry hasn't standardized on one way to emplace SVG images.
Some folks use the embed tag, others use the object tag. I've noticed
that wikipedia apparently converts SVG files to PNG on the fly.  Even
firefox won't let you (yet) use the <img> tag to embed SVG images, so
its understandable that TW doesn't use the comparable [img] syntax
either.

In TW on firefox, you can use the <html> and  <embed> tags to place an
image:

<html>
<embed src="SVG.svg" width="350" height="350"
type="image/svg+xml"
 />
</html>

However, embed is not an official part of the HTML spec. There is also
a similar syntax using the object tag, but I wasn't able to get that
to work in my quick test.

Did you try with this?

<html>
<object data="SVG.svg" width="40%" height="40%" type="image/svg+xml">
</object>
</html>

to me it works
--
tiziano de togni
______________________________________
http://digilander.libero.it/tizzziano/
http://tiziano.tiddlyspot.com

--
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To post to this group, send email to tiddlyw...@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.

Reply via email to