We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63c62ac commit c19a4c1Copy full SHA for c19a4c1
packages/worker/src/worker.ts
@@ -40,7 +40,13 @@ async function markdown_to_html(s: string) {
40
.replace(/<ul>/g, '')
41
.replace(/<\/ul>/g, '')
42
.replace(/<li>/g, '')
43
- .replace(/<\/li>/g, '');
+ .replace(/<\/li>/g, '')
44
+ .replace(/<h1>/g, '')
45
+ .replace(/<\/h1>/g, '')
46
+ .replace(/<h2>/g, '')
47
+ .replace(/<\/h2>/g, '')
48
+ .replace(/<h3>/g, '')
49
+ .replace(/<\/h3>/g, '');
50
}
51
52
export default {
0 commit comments