markdown 0.7.1+1 copy "markdown: ^0.7.1+1" to clipboard
markdown: ^0.7.1+1 copied to clipboard

outdatedDart 1 only

A library for converting markdown to HTML.

markdown #

This is a portable markdown library written in dart. It can parse markdown into html on both the client and server.

Usage #

You can find the installation directions here.

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

main() {
  print(markdownToHtml('Hello *Markdown*'));
  //=> <p>Hello <em>Markdown</em></p>
}

You can create and use your own syntaxes!

import 'package:markdown/markdown.dart';

main() {
  List<InlineSyntax> syntaxes = [new TextSyntax('nyan', sub: '~=[,,_,,]:3')];
  print(markdownToHtml('nyan', inlineSyntaxes: syntaxes));
  //=> <p>~=[,,_,,]:3</p>
}

You can find the documentation for this library here.