mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-18 15:40:12 +01:00
🎨 Improve exporting docx https://github.com/siyuan-note/siyuan/issues/14825
This commit is contained in:
parent
2d0edc1555
commit
a06da150a6
1 changed files with 5 additions and 0 deletions
|
|
@ -793,6 +793,11 @@ func ExportMarkdownHTML(id, savePath string, docx, merge bool) (name, dom string
|
|||
n.ListData.Start = li.ListData.Num
|
||||
}
|
||||
}
|
||||
} else if n.IsTextMarkType("code") {
|
||||
if nil != n.Next && ast.NodeText == n.Next.Type {
|
||||
// 行级代码导出 word 之后会有多余的零宽空格 https://github.com/siyuan-note/siyuan/issues/14825
|
||||
n.Next.Tokens = bytes.TrimPrefix(n.Tokens, []byte(editor.Zwsp))
|
||||
}
|
||||
}
|
||||
return ast.WalkContinue
|
||||
})
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue