toHtml method
Convert markdown to html
Implementation
@override
String toHtml(String text) {
var match = exp.firstMatch(text.trim());
return '<p><input type="checkbox"${("${match?[1]}" == "x") ? "checked" : ""}>${MdWidget.toHtml((match?[2]).toString()).trim()}</p>';
}