🎨 Support calling system printing on Android https://github.com/siyuan-note/siyuan/issues/16152

Signed-off-by: Daniel <845765@qq.com>
This commit is contained in:
Daniel 2025-10-20 00:06:25 +08:00
parent e7b44d8ece
commit d9a3edb842
No known key found for this signature in database
GPG key ID: 86211BA83DF03017
16 changed files with 18 additions and 2 deletions

View file

@ -767,7 +767,7 @@ export const exportMd = (id: string) => {
merge: localData.mergeSubdocs,
}, async response => {
const html = await onExport(response, undefined, {type: "pdf", id});
window.JSAndroid.exportPDF(html);
window.JSAndroid.print(html);
});
}
},