https://github.com/nashaofu/markdown365
a powerful markdown editor
https://github.com/nashaofu/markdown365
desktop editor electron markdown
Last synced: about 2 months ago
JSON representation
a powerful markdown editor
- Host: GitHub
- URL: https://github.com/nashaofu/markdown365
- Owner: nashaofu
- Created: 2017-10-10T09:13:48.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-01-24T15:50:33.000Z (over 8 years ago)
- Last Synced: 2025-01-02T12:45:35.514Z (over 1 year ago)
- Topics: desktop, editor, electron, markdown
- Language: JavaScript
- Homepage:
- Size: 563 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## markdown365
> a powerful markdown editor
## 开发说明
1. 项目调试需要chrome浏览器安装react、redux扩展,否则不能够在electron中调用扩展
## TODO
- [ ] 管理浏览器插件
- [ ] 编写统一接口的桌面API
- [x] 文件支持一个与多个同时操作如:openFile openFiles
- [ ] clickOut统一函数处理
- [ ] 页面锚点跳转支持
## img url
```javascript
let src = img.getAttribute('src');
if (url.parse(src).protocol === null) {
if (!path.isAbsolute(src)) src = path.resolve(w.directory, src);
src = url.resolve('file://', src);
}
```