generating simple frame based index page in html export

This commit is contained in:
zadam
2019-10-21 21:00:27 +02:00
parent 1522297700
commit f0496cb42c
2 changed files with 61 additions and 12 deletions

View File

@@ -233,6 +233,10 @@ async function importTar(taskContext, fileBuffer, importRootNote) {
async function saveNote(filePath, content) {
const {parentNoteMeta, noteMeta} = getMeta(filePath);
if (noteMeta && noteMeta.noImport) {
return;
}
const noteId = getNoteId(noteMeta, filePath);
const parentNoteId = await getParentNoteId(filePath, parentNoteMeta);