Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xia-weiyang/markdown_editor_ot
Simple and easy to implement your markdown editor, it uses its own parser.
https://github.com/xia-weiyang/markdown_editor_ot
dart flutter markdown markdown-editor
Last synced: 11 days ago
JSON representation
Simple and easy to implement your markdown editor, it uses its own parser.
- Host: GitHub
- URL: https://github.com/xia-weiyang/markdown_editor_ot
- Owner: xia-weiyang
- License: gpl-2.0
- Created: 2018-08-23T02:33:29.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-08-14T13:17:53.000Z (about 1 year ago)
- Last Synced: 2024-10-20T04:21:43.202Z (19 days ago)
- Topics: dart, flutter, markdown, markdown-editor
- Language: Dart
- Homepage: https://pub.dev/packages/markdown_editor_ot
- Size: 266 KB
- Stars: 38
- Watchers: 4
- Forks: 11
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# markdown_editor
Simple and easy to implement your markdown editor, it uses its own parser.
![show](https://xia-weiyang.github.io/gif/markdown_editor.gif)
If you only need to render, you can refer to [https://github.com/xia-weiyang/markdown_core](https://github.com/xia-weiyang/markdown_core)
``` dart
MarkdownEditor(
initText: 'initText',
initTitle: 'initText',
onTapLink: (link){
print('点击了链接 $link');
},
imageWidget: (imageUrl) {
return // Your image widget ;
},
imageSelect: (){ // Click image select btn
return // selected image link;
},
)
```