You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			|  | 4 years ago | |
|---|---|---|
| .. | ||
| icons | 4 years ago | |
| lib | 4 years ago | |
| .gitignore | 4 years ago | |
| CHANGELOG.md | 4 years ago | |
| LICENSE | 4 years ago | |
| README.md | 4 years ago | |
| pubspec.yaml | 4 years ago | |
		
			
				
				README.md
			
		
		
			
			
		
	
	markdown_editor
Simple and easy to implement your markdown editor, it uses its own parser.
If you only need to render, you can refer to https://github.com/xia-weiyang/markdown_core
MarkdownEditor(
      initText: 'initText',
      initTitle: 'initText',
      onTapLink: (link){
        print('点击了链接 $link');
      },
      imageWidget: (imageUrl) {
        return // Your image widget ;
      },
      imageSelect: (){ // Click image select btn
        return // selected image link;
      },
)
