This commit is contained in:
Liang Ding 2023-05-10 22:58:08 +08:00
parent c3df45a406
commit c6e66eaa06
No known key found for this signature in database
GPG key ID: 136F30F901A2231D
3 changed files with 29 additions and 0 deletions

View file

@ -656,6 +656,17 @@ export const exportMd = (id: string) => {
openByMobile(response.data.zip);
});
}
},{
label: "Textile",
click: () => {
const msgId = showMessage(window.siyuan.languages.exporting, -1);
fetchPost("/api/export/exportTextile", {
id,
}, response => {
hideMessage(msgId);
openByMobile(response.data.zip);
});
}
},
]
}