mirror of
https://github.com/zadam/trilium.git
synced 2025-10-30 18:05:55 +01:00
basic support for internal links
This commit is contained in:
@@ -26,7 +26,16 @@ function notecase2html(note) {
|
||||
}
|
||||
}
|
||||
else if (el.type === 'link') {
|
||||
let linkHtml = '<a href="' + el.target_url + '">' + el.lnk_text + '</a>';
|
||||
let targetUrl;
|
||||
|
||||
if (el.target_url) {
|
||||
targetUrl = el.target_url;
|
||||
}
|
||||
else {
|
||||
targetUrl = "app#" + el.target_note_id;
|
||||
}
|
||||
|
||||
let linkHtml = '<a href="' + targetUrl + '">' + el.lnk_text + '</a>';
|
||||
|
||||
noteText = noteText.substr(0, el.note_offset + offset) + noteText.substr(el.note_offset + offset + el.lnk_text.length);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user