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 a001808 commit 8f928fdCopy full SHA for 8f928fd
web_src/js/markup/html2markdown.ts
@@ -49,7 +49,7 @@ function prepareProcessors(ctx:ProcessorContext): Processors {
49
BLOCKQUOTE(el: HTMLElement) {
50
el.textContent = `${el.textContent.replace(/^/mg, '> ')}\n`;
51
},
52
- OL(el: HTMLOListElement) {
+ OL(el: HTMLElement) {
53
const preNewLine = ctx.listNestingLevel ? '\n' : '';
54
el.textContent = `${preNewLine}${el.textContent}\n`;
55
0 commit comments