Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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;
},
)
```