Fixed
- minor bug-fix: when you CTRL+clicked a tag in the drawing, it threw an error if the drawing was not full screen.
New Feature
- ExcalidrawAutomate create function
- now returns the filepath of the created file
- properly processes the frontmatter of the template file (fixed)
- you can now specify frontmatter to be used as a parameter
create (
params?: {
filename?: string,
foldername?:string,
templatePath?:string,
onNewPane?: boolean,
frontmatterKeys?:{
"excalidraw-plugin"?: "raw"|"parsed",
"excalidraw-link-prefix"?: string,
"excalidraw-link-brackets"?: boolean,
"excalidraw-url-prefix"?: string
}
}
):Promise<string>;