Typora图片保存到gitee
初始化Gitee仓库
-
登录 gitee,在【设置】-【安全设置:私人令牌】新增一个令牌
-
提交之后把 token 复制下来,这个 token 只会出现这一次,丢了就再生成新的令牌
-
创建一个新的仓库,必须是公开的,因为 markdown 需要外部访问才能显示出图片
下载Typora
官方链接:https://typora.io
下载安装npm
下载PicGo-Core及相关插件
方式一:通过typora下载picgo-core
下载完成,打开cmd命令,执行安装gitee-uploader和super-prefix(上次突破时加时间戳)插件。
cd C:\Users\Administrator\AppData\Roaming\Typora\picgo\win64
.\picgo.exe install gitee-uploader
.\picgo.exe install super-prefix
先改npm源为国内地址,确保安装成功
方式二:通过npm直接安装picgo
-
打开cmd命令,分别执行以下操作
-
全局安装picgo
npm install picgo -g
-
安装gitee-uploader和super-prefix插件
picgo install gitee-uploader super-prefix
-
使用
picgo use plugins
,按空格键和上下方向键选择 gitee-uploader
配置picgo插件
windows系统 C:\Users\用户名\.picgo
下的 config.json
就是用于上传配置的文件。我们只需要修改此文件即可,填写好 gitee
下面的信息保存即可
{
"picBed": {
"current": "gitee",
"gitee": {
"repo": "xxx/xxx", //此时是用户名/仓库访问地址
"token": "xxxxxx", //gitee令牌
"path": "image/", //图片保存路径
"branch": "master"
}
},
"picgoPlugins": {
"picgo-plugin-gitee-uploader": true,
"picgo-plugin-super-prefix": true
},
"picgo-plugin-super-prefix": {
"fileFormat": "YYYYMMDDHHmmss"
},
//自动出现的,不用配置
"picgo-plugin-gitee-uploader": {
"lastSync": "2023-02-02 05:36:34"
}
}
成功
标签:Typora,保存,gitee,prefix,uploader,picgo,super From: https://www.cnblogs.com/flywing/p/17916587.html