html2md 0.0.1 html2md: ^0.0.1 copied to clipboard
Convert html to markdown. A simplify version of node's `turndown`.
html2md #
Convert html to markdown. A simplify version of node's turndown.
Created from templates made available by Stagehand under a BSD-style license.
Usage #
A simple usage example:
import 'package:html2md/html2md.dart' as hm;
main() {
var html = '<h1>HTML2MD Demo</h1>';
print(hm.convert(html));
}
Features and bugs #
Please file feature requests and bugs at the issue tracker.