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

outdatedDart 1 only

A fork of dart-markdown for easy customizing markdown syntaxes.

markd #

A fork of David Peek's dart-markdown for easy customization of Markdown syntaxes.

Differences:

  1. LinkResolver replaces Resolver to provide more options.

  2. InlineSyntax introduces additional argument, caseSensitive.

  3. The header syntax requires a whitespace between # and the text, so #foo can represent a link (like Github does). For example, # foo is a header, while #foo is not.

Usage #

You can find the installation directions here.

import 'package:markd/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:markd/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.

##Who Uses

  • Quire - a simple, collaborative, multi-level task management tool.
2
likes
0
pub points
70%
popularity

Publisher

verified publisherquire.io

A fork of dart-markdown for easy customizing markdown syntaxes.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

More

Packages that depend on markd