Bumped version
1 file changed
tree: f86c65603e2064b5e4e4d1da949e017f07bd4ec2
  1. lib/
  2. test/
  3. .gitignore
  4. LICENSE
  5. pubspec.yaml
  6. README.md
README.md

dartdoc markdown library

This is a standalone version of the dartdoc markdown library. It parses markdown and converts it to HTML.

Installation

Add this to your pubspec.yaml (or create it):

dependencies:
  markdown: any

Then run the Pub Package Manager (comes with the Dart SDK):

pub install

Usage

import "package:markdown/markdown.dart" show markdownToHtml;

main() {
  print(markdownToHtml("Hello *Markdown*"));
}