一直在使用evernode 一开始使用马克飞象使用markdown做笔记,但是马克飞象收费了,没办法只能使用sublime安装Evernote插件使用markdown进行笔记,挺好用的。

插件名称:Evernote

安装

1、使用 Package Control 安装 Evernote 插件

Preferences > Package Settings > Evernote 选择 Reconfigure Authorisation

2、打开网址 https://app.yinxiang.com/api/DeveloperToken.action

获取token:S=”……”s50:U=b3f855:E=15ce822045f:C=1559070d690:P=1cd:A=en-devtoken:V=2:H=498afd442e0ef97bfe1e9e385a645eda

noteStoreUrl:https://app.yinxiang.com/shard/s50/notestore

3、sublime 打开
Preferences > Package Settings > Evernote >

加入如下信息

{
     "noteStoreUrl": "你的 NoteStore URL",
     "token": "你的 Developer Token"
}

4、token 是以S=开头的一串字符串

5、noteStoreUrl 是一段 http 地址,你需要手动将https替换成http

6、保存设置文件(可能还需要重启你的Sublime Text)之后,尝试打开一个笔记以确保你的印象笔记能正常工作

使用

Preferences–> Key Bindings-User

{ "keys": ["super+e"], "command": "show_overlay", "args": {"overlay": "command_palette", "text": "Evernote: "} },
{ "keys": ["ctrl+e", "ctrl+s"], "command": "send_to_evernote" },
{ "keys": ["ctrl+e", "ctrl+o"], "command": "open_evernote_note" },
{ "keys": ["ctrl+e", "ctrl+u"], "command": "save_evernote_note" },`

配置好这些之后你就可以愉快的使用sublime编辑文件同步到 evernode了

参考地址:

https://packagecontrol.io/packages/Evernote
https://github.com/bordaigorl/sublime-evernote/wiki/First-Use