New
- LaTeX editor is now floating #2684 🙏@TravisLEBLANC1, #2698 🙏@heinrich26
- Inline link suggester supports new triggers
![[drawing#^frame=and![[drawing#^clippedframe=, thus it is easy to reference frames like pdf pages, slides or other parts of your scene marked using marker frames. - Support for mermaid Entity Relationship Diagrams, and new ERD/cardinality arrowheads #10940
- New Context Menu options to disable arrow binding and midpoint snapping #10906
- Improved UI styling and icons are better aligned with Obsidian #2703, #2687, #2697 🙏@heinrich26
Fixed
- Sizing of embedded images in Markdown when image type is set to SVG #2685
- Fixed Enter, Up/Down arrows, and TAB keys stopped working in text elements after deleting the
#character #2704
MindMap Builder
- Fixed navigation (arrow keys) scoping and recognition
- Added new feature to paste images and single Excalidraw elements like container with text, text element, or image element directly as a map leaf (using the MindMap Builder default paste shortcut: ALT/OPT+V)
- Added new action to toggle a markdown link between markdown embeddable and link as text. Default shortcut is ALT/OPT+E.
New in ExcalidrawAutomate
/**
* Parses text using the target view's ExcalidrawData parser.
*
* This reuses ExcalidrawData parsing logic directly, including transclusion
* resolution, link bracket rendering, and link/url prefixes based on the
* target file's frontmatter.
*
* @param {string} text - Raw text to parse.
* @returns {Promise<string | undefined>} Parsed text, or undefined when input/view is unavailable.
*/
public async parseText (text: string): Promise<string | undefined>;