mirror of
https://github.com/zadam/trilium.git
synced 2024-12-26 09:12:08 +08:00
HTML tags which are not converted to notecase formattings are stripped - that way notecase webapp doesn't save stuff not readable by notecase desktop. Also bugfix in parsing links
This commit is contained in:
parent
6fe81cd93a
commit
d3b036d882
1 changed files with 8 additions and 5 deletions
|
@ -12,9 +12,9 @@ function html2notecase(contents, note) {
|
|||
note.images = [];
|
||||
|
||||
while (index < contents.length) {
|
||||
let found = false;
|
||||
|
||||
if (contents[index] == '<') {
|
||||
let found = false;
|
||||
|
||||
let curContent = contents.substr(index);
|
||||
let endOfTag = curContent.indexOf('>');
|
||||
|
||||
|
@ -87,7 +87,7 @@ function html2notecase(contents, note) {
|
|||
}
|
||||
}
|
||||
|
||||
let match = /<a[^>]+?href="([^"]+?)"[^>]+?>([^<]+?)<\/a>/.exec(curContent);
|
||||
let match = /^<a[^>]+?href="([^"]+?)"[^>]+?>([^<]+?)<\/a>/.exec(curContent);
|
||||
|
||||
if (match != null) {
|
||||
note.links.push({
|
||||
|
@ -114,9 +114,12 @@ function html2notecase(contents, note) {
|
|||
// if (match != null) {
|
||||
|
||||
// }
|
||||
}
|
||||
|
||||
if (!found) {
|
||||
if (!found) {
|
||||
contents = contents.substr(0, index) + contents.substr(index + endOfTag + 1);
|
||||
}
|
||||
}
|
||||
else {
|
||||
index++;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue