Removed compiler dependency
132 files changed
tree: 902e5829c1c932807a99d2e7073ad04b1d6ddf33
  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*"));
}