diff --git a/main.js b/main.js index 899244e..741b438 100644 --- a/main.js +++ b/main.js @@ -580,6 +580,7 @@ function children(note) return (note.content .match(/\[\[([^\]]*)\]\]/g) || []) .map(l => l.replace("[[", "").replace("]]", "")) + .filter(l => !l.includes("(deleted)")) .map(l => getnote(l)); }