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_core

Parse markdown and render it into rich text.
https://github.com/xia-weiyang/markdown_core

dart flutter markdown

Last synced: 27 days ago
JSON representation

Parse markdown and render it into rich text.

Awesome Lists containing this project

README

        

# markdown_core

Parse markdown and render it into rich text.

![show](https://xia-weiyang.github.io/gif/markdown_core.gif)

``` dart
Markdown(
data: markdownDataString,
linkTap: (link) => print('点击了链接 $link'),
textStyle: // your text style ,
image: (imageUrl) {
print('imageUrl $imageUrl');
return // Your image widget ;
},
)
```