Improved detection of on-screen keyboard on mobile devices.
New from Excalidraw.com
New
- New option in the Export Dialog to include/exclude internal links when exporting to SVG or PDF.
- Useful when sharing an SVG or PDF with others.
- Internal links are links that point to files in your Obsidian vault.
- By default, internal links are included in exports.
- Use the new document property: `export-internal-links: false` to disable exporting internal links on a per-drawing basis.
Fixed
- Memory leak issues
- Potential fix to Backspace and CTRL+V stopping working in text elements after extended use of Excalidraw.
- Improved detection of on-screen keyboard on mobile devices.
New in ExcalidrawAutomate
- createSVG() now exposes convertMarkdownLinksToObsidianURLs and includeInternalLinks parameters.
async createSVG(
templatePath?: string,
embedFont: boolean = false,
exportSettings?: ExportSettings,
loader?: EmbeddedFilesLoader,
theme?: string,
padding?: number,
convertMarkdownLinksToObsidianURLs: boolean = false,
includeInternalLinks: boolean = true,
): Promise<SVGSVGElement>