fix: convert code block

This commit is contained in:
三咲智子 2022-11-26 03:16:47 +08:00
parent 373697619f
commit d9d2a946a4
No known key found for this signature in database
GPG key ID: 69992F2250DFD93E

View file

@ -125,8 +125,8 @@ function treeToText(input: Node): string {
pre = '\n'
if (input.nodeName === 'code') {
pre = '`'
post = '`'
pre = '````\n'
post = '\n```'
}
if ('childNodes' in input)