3 weeks later 终于收到了obsidian human review的回复(会同步通知在绑定GitHub的邮箱)
从我欠考虑的desktop/mobile应用 到细节上的UI界面大小写 给出了详细反馈。
一是网页response的问题。
之前我用的是axios.get(), 但建议统一为Obsidian API提供的requestUrl。
二是大小写问题。
在UI界面上,需要统一成sentence case,即I Am A Student. -> I am a student. 仅首字母大写。
三是平台支持问题。
主要先是分了桌面端/移动端,如果一个应用只支持desktop的话,应该在manifest.json里修改"isDesktopOnly": true,
其次,在desktop设备里,似乎是可以只支持某一种的(如仅支持Mac),只需要1) 在readme中说明,2) 相关验证保证the code is only being executed on a Mac. 我目前的解决方案是加入平台检查:
TypeScript
if (os.platform() !== 'darwin') {
new Notice('This feature is only supported on macOS.');
return;
}
四是路径,
const absPath = app.vault.adapter.basePath;
不建议global的方式,建议采用plugin instance。我参考了这个回复中关于FileSystemAdapter的方案How to get vault absolute path? - #2 by Jare - Developers: Plugin & API - Obsidian Forum