Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/xia-weiyang/markdown_core
- Owner: xia-weiyang
- License: apache-2.0
- Created: 2019-11-05T13:11:17.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-03-07T02:31:32.000Z (8 months ago)
- Last Synced: 2024-03-07T03:34:42.290Z (8 months ago)
- Topics: dart, flutter, markdown
- Language: Dart
- Homepage: https://pub.dev/packages/markdown_core
- Size: 180 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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 ;
},
)
```