feat(core): add markdown preview for backlinks (#8883)

This commit is contained in:
EYHN
2024-12-02 03:42:07 +00:00
parent 11b453f4d8
commit cee5d02f71
12 changed files with 292 additions and 83 deletions

View File

@@ -40,7 +40,7 @@ export class Document<S extends Schema = any> {
}
} else {
for (const key in map) {
if (map[key] === undefined) {
if (map[key] === undefined || map[key] === null) {
continue;
}
doc.insert(key, map[key]);