Style conventions, copyright and AUTHORS.
2 files changed
tree: f1a3e064dfb254396d9c54fc87c36d44e487a82e
  1. lib/
  2. test/
  3. .gitignore
  4. AUTHORS
  5. LICENSE
  6. pubspec.yaml
  7. 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*"));
}