We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For me the delivered SVG does not render in a separate window, but when adding xmlns for the HTML elements in a foreignObject it does work.
foreignObject
This snippet does not render TEXT
... <foreignObject width="131" height="18"> <div style="display: inline-block; white-space: nowrap;"> TEXT </div> </foreignObject> ...
This snippet does render TEXT
... <foreignObject width="131" height="18"> <div xmlns="http://www.w3.org/1999/xhtml" style="display: inline-block; white-space: nowrap;"> TEXT </div> </foreignObject> ...
The text was updated successfully, but these errors were encountered:
Hi sorry for the late response!
Is this still an issue? If so in what browser do you run this?
Sorry, something went wrong.
I guess Chrome, it is a while ago. You should provide a xmlns when blending various xml based languages
Sounds like a good idea. Will add it.
Thanks for the input.
Fix for defect #180, SVG foreignObject rendering
8258fb0
Fix for this issue was released in mermaid 0.5.2. Will close this now, let me know if you issues still remain.
No branches or pull requests
For me the delivered SVG does not render in a separate window, but when adding xmlns for the HTML elements in a
foreignObject
it does work.This snippet does not render TEXT
This snippet does render TEXT
The text was updated successfully, but these errors were encountered: