Compare commits

...

2 Commits

Author SHA1 Message Date
Tom Moor 01b239fb6a touch 2024-11-16 09:03:22 -05:00
Tom Moor 456d95c6f0 test chunk 2024-11-16 09:00:14 -05:00
+2 -1
View File
@@ -1,6 +1,7 @@
import debounce from "lodash/debounce";
import last from "lodash/last";
import sortBy from "lodash/sortBy";
import type MermaidUnsafe from "mermaid";
import { Node } from "prosemirror-model";
import {
Plugin,
@@ -36,7 +37,7 @@ class Cache {
private static data: Map<string, string> = new Map();
}
let mermaid: typeof import("mermaid")["default"];
let mermaid: typeof MermaidUnsafe;
type RendererFunc = (
block: { node: Node; pos: number },