# Flutter MarkdownA markdown renderer for Flutter. It supports the[original format](https://daringfireball.net/projects/markdown/), but no inlinehtml.## Getting StartedUsing the Markdown widget is simple, just pass in the source markdown as astring: new Markdown(data: markdownSource);If you do not want the padding or scrolling behavior, use the MarkdownBodyinstead: new MarkdownBody(data: markdownSource);By default, Markdown uses the formatting from the current material design theme,but it's possible to create your own custom styling. Use the MarkdownStyle classto pass in your own style. If you don't want to use Markdown outside of materialdesign, use the MarkdownRaw class.