Don't mark plug-space links as non-existent in the editor
This commit is contained in:
@@ -40,8 +40,11 @@ export function cleanWikiLinkPlugin(editor: Editor) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (cleanPage === "" || cleanPage.startsWith("💭")) {
|
||||
// Empty page name, or local @anchor use
|
||||
if (
|
||||
cleanPage === "" ||
|
||||
editor.plugSpaceRemotePrimitives.isLikelyHandled(cleanPage)
|
||||
) {
|
||||
// Empty page name with local @anchor use or a link to a page that dynamically generated by a plug
|
||||
pageExists = true;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user