File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ static void html_render(cmark_syntax_extension *extension,
98
98
bool entering = (ev_type == CMARK_EVENT_ENTER );
99
99
if (entering ) {
100
100
cmark_html_render_cr (renderer -> html );
101
- cmark_strbuf_puts (renderer -> html , "<li class=\"task-list-item\" " );
101
+ cmark_strbuf_puts (renderer -> html , "<li" );
102
102
cmark_html_render_sourcepos (node , renderer -> html , options );
103
103
cmark_strbuf_putc (renderer -> html , '>' );
104
104
long userdata = (long )cmark_node_get_user_data (node );
Original file line number Diff line number Diff line change @@ -719,8 +719,8 @@ Autolink and tables.
719
719
- [x] bar
720
720
.
721
721
<ul>
722
- <li class="task-list-item" ><input type="checkbox" disabled="" /> foo</li>
723
- <li class="task-list-item" ><input type="checkbox" checked="" disabled="" /> bar</li>
722
+ <li><input type="checkbox" disabled="" /> foo</li>
723
+ <li><input type="checkbox" checked="" disabled="" /> bar</li>
724
724
</ul>
725
725
````````````````````````````````
726
726
@@ -731,12 +731,12 @@ Autolink and tables.
731
731
- [ ] bim
732
732
.
733
733
<ul>
734
- <li class="task-list-item" ><input type="checkbox" checked="" disabled="" /> foo
734
+ <li><input type="checkbox" checked="" disabled="" /> foo
735
735
<ul>
736
- <li class="task-list-item" ><input type="checkbox" disabled="" /> bar</li>
737
- <li class="task-list-item" ><input type="checkbox" checked="" disabled="" /> baz</li>
736
+ <li><input type="checkbox" disabled="" /> bar</li>
737
+ <li><input type="checkbox" checked="" disabled="" /> baz</li>
738
738
</ul>
739
739
</li>
740
- <li class="task-list-item" ><input type="checkbox" disabled="" /> bim</li>
740
+ <li><input type="checkbox" disabled="" /> bim</li>
741
741
</ul>
742
742
````````````````````````````````
You can’t perform that action at this time.
0 commit comments