Skip to content

Commit 5f66d3e

Browse files
committed
filter out ul
1 parent 770ce54 commit 5f66d3e

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
@@ -36,7 +36,9 @@ async function markdown_to_html(s: string) {
3636
.replace(/<p>/g, '')
3737
.replace(/<\/p>/g, '')
3838
.replace(/<ol>/g, '')
39-
.replace(/<\/ol>/g, '');
39+
.replace(/<\/ol>/g, '')
40+
.replace(/<ul>/g, '')
41+
.replace(/<\/ul>/g, '');
4042
}
4143

4244
export default {

0 commit comments

Comments
 (0)