Skip to content

Commit 8f928fd

Browse files
authored
Update web_src/js/markup/html2markdown.ts
1 parent a001808 commit 8f928fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web_src/js/markup/html2markdown.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ function prepareProcessors(ctx:ProcessorContext): Processors {
4949
BLOCKQUOTE(el: HTMLElement) {
5050
el.textContent = `${el.textContent.replace(/^/mg, '> ')}\n`;
5151
},
52-
OL(el: HTMLOListElement) {
52+
OL(el: HTMLElement) {
5353
const preNewLine = ctx.listNestingLevel ? '\n' : '';
5454
el.textContent = `${preNewLine}${el.textContent}\n`;
5555
},

0 commit comments

Comments
 (0)