-
-
Notifications
You must be signed in to change notification settings - Fork 651
New issue
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
Is it possible to add images on the elements of my mind ? #66
Comments
There is no built-in support for this. The hard part is deciding where to actually store such image. But you can almost certainly insert images using the data-URI, which might or might not be supported in your browser when pasting image data from clipboard. Try this in Firefox and Chrome and tell us whether that worked or not 👍 |
Commenting on an old issue. |
That is literally the point I was making in the previous comment :-) |
I could have read the link... |
Perhaps we can scan the HTML content for |
Hello @ondras , I'm adding images as base64: When I add the image it re-arrange the nodes, that's excellent! (Please check below screenshot) But when I open an existing map, it gives space between nodes as it is a single-line text (Please check below screenshot) And when I select a node with image, write some text and update it.. then it re-arrange the parent node and gives the right amount of space. How can I do the same re-arranging on restoring that we're doing to updating a node's text? I have tried adding |
That is probably because the image is not loaded yet, so the size of the node is not known. Loading an image (even if it is base64-encoded) is an asynchronous operation. You would need to add a |
Hi Thanks for this tool. It works really well. I was wondering if it would be possible to add images to the elements. For example, if I want to make a organization hierarchy, it would be nice if you could add images of people within a organization. If you already have such examples, I would love to see that.
The text was updated successfully, but these errors were encountered: