Skip to content

Commit c8a1bfe

Browse files
committed
filter out li
1 parent 5f66d3e commit c8a1bfe

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/worker/src/worker.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,9 @@ async function markdown_to_html(s: string) {
3838
.replace(/<ol>/g, '')
3939
.replace(/<\/ol>/g, '')
4040
.replace(/<ul>/g, '')
41-
.replace(/<\/ul>/g, '');
41+
.replace(/<\/ul>/g, '')
42+
.replace(/<li>/g, '')
43+
.replace(/<\/li>/g, '');
4244
}
4345

4446
export default {

0 commit comments

Comments
 (0)