我用Shell script location解决了....
第一步:安装PicGo-Core。我是mac,命令我用的npm install picgo -g,可能会遇到一些错误,按照提示修复即可。
第二步:sm.sm官网注册个账号,登录后再个人主页找到API Token菜单,点击Generate Secret Token按钮,生成一个Secret Token。
第三步:把上一步的token,配置到picgo配置文件去,参考PicGo-Core配置。json文件加一个:
"smms": {"token":"$YOUR_TOKEN"// 从 https://sm.ms/home/apitoken 获取的 token}
第四步:通过picgo u xxx.png 上传一个图片试试效果。
第五步:准备一个sh脚本,比如我的picgo_upload.sh,并给执行权限,如chmod 755 picgo_upload.sh
#!/bin/bashsource/etc/profileexportLANG="en_US.UTF-8"img="$(~/.npm-global/bin/picgo u$1)"echo$img|awk'{print $NF}'
第六步:MarkText>Preferences>Image>Upload image to cloud xxxx>Command line script。然后再Shell script location处,填写刚刚的脚本绝对路径,并保存。
第七步:效果测试 上传中...
上传成功:
问题见:https://github.com/marktext/marktext/issues/3118