diff --git a/src/public/app/services/link.js b/src/public/app/services/link.js index fabfc2628..6c428dcd6 100644 --- a/src/public/app/services/link.js +++ b/src/public/app/services/link.js @@ -17,6 +17,12 @@ async function createNoteLink(notePath, options = {}) { return $("").text("[missing note]"); } + if (!notePath.startsWith("root")) { + // all note paths should start with "root/" (except for "root" itself) + // used e.g. to find internal links + notePath = "root/" + notePath; + } + let noteTitle = options.title; const showTooltip = options.showTooltip === undefined ? true : options.showTooltip; const showNotePath = options.showNotePath === undefined ? false : options.showNotePath;