mirror of
https://github.com/zadam/trilium.git
synced 2025-10-30 09:56:36 +01:00
11 lines
159 B
JavaScript
11 lines
159 B
JavaScript
|
|
"use strict";
|
||
|
|
|
||
|
|
function exportSubTree(noteId) {
|
||
|
|
const url = getHost() + "/api/export/" + noteId;
|
||
|
|
|
||
|
|
download(url);
|
||
|
|
}
|
||
|
|
|
||
|
|
function importSubTree(noteId) {
|
||
|
|
|
||
|
|
}
|