// This file is auto-generated by the build script // Please, do not modify it manually use super::test_markdown_html; #[test] fn gfm_tasklist_test_1() { let original = r##"- [ ] foo - [x] bar "##; let expected = r##" "##; test_markdown_html(original, expected); } #[test] fn gfm_tasklist_test_2() { let original = r##"- [x] foo - [ ] bar - [x] baz - [ ] bim "##; let expected = r##" "##; test_markdown_html(original, expected); }