use super::{html, html_opts};
#[test]
fn pointy_brace_open() {
html("<!-", "<p><!-</p>\n");
}
#[test]
fn tasklist() {
html_opts!(
[extension.tasklist, parse.relaxed_tasklist_matching],
"* [*]",
"<ul>\n<li><input type=\"checkbox\" disabled=\"\" checked=\"\" /> </li>\n</ul>\n",
);
}