support OPML from MindManager, fixes #1862

This commit is contained in:
zadam
2021-04-19 22:33:58 +02:00
parent 583df35231
commit a88a32acae
2 changed files with 7 additions and 1 deletions

View File

@@ -36,6 +36,12 @@ async function importOpml(taskContext, fileBuffer, parentNote) {
if (opmlVersion === 1) {
title = outline.$.title;
content = toHtml(outline.$.text);
if (!title || !title.trim()) {
// https://github.com/zadam/trilium/issues/1862
title = outline.$.text;
content = '';
}
}
else if (opmlVersion === 2) {
title = outline.$.text;