Hi!
Same thing happened to me. I think you need to save the svg as a separate file and then link it to your xhtml file with an object tag. Like this:
Code:
<object data="nameofthefile.svg" type="image/svg+xml" width="100%" >
<img src="nameoffallbackimage.png" alt="something" />
</object>
Works for me at least!