Includes two arrow fixes from excalidraw.com #10403, #10410
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.
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>