- Download the new Mindmap Builder. from the "sidepanels" branch of the Obsidian-Excalidraw repository. **Note: ** the version of Mindmap Builder in the script store is not updated yet with the new features.
- Mindmap Builder supports inline link autocomplete
New in ExcalidrawAutomate
/**
* Attaches an inline link suggester to the provided input element. The suggester reacts to
* "[[" typing, offers vault link choices (including aliases and unresolved links), and inserts
* the selected link using relative linktext when the active Excalidraw view is known.
* @param {HTMLInputElement} inputEl - The input element to enhance.
* @param {HTMLElement} [widthWrapper] - Optional element to determine suggester width.
* @returns {KeyBlocker} The suggester instance; call close() to detach; call .isBlockingKeys() to check if suggester dropdown is open.
*/
public attachInlineLinkSuggester(inputEl: HTMLInputElement, widthWrapper?: HTMLElement): KeyBlocker {
const getSourcePath = () => this.targetView?.file?.path;
return new InlineLinkSuggester(this.plugin.app, this.plugin, inputEl, getSourcePath, widthWrapper);
}