mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-09-22 00:20:47 +02:00
🎨 Improve export preview https://github.com/siyuan-note/siyuan/issues/13857
This commit is contained in:
parent
9885e6eb9b
commit
0658c85b2e
3 changed files with 4 additions and 4 deletions
|
@ -709,7 +709,7 @@ func NewLute() (ret *lute.Lute) {
|
|||
return
|
||||
}
|
||||
|
||||
func EnableLuteInlineSyntax(luteEngine *lute.Lute) {
|
||||
func enableLuteInlineSyntax(luteEngine *lute.Lute) {
|
||||
luteEngine.SetInlineAsterisk(true)
|
||||
luteEngine.SetInlineUnderscore(true)
|
||||
luteEngine.SetSup(true)
|
||||
|
|
|
@ -576,11 +576,11 @@ func Preview(id string) (retStdHTML string) {
|
|||
tree, _ := LoadTreeByBlockID(id)
|
||||
tree = exportTree(tree, false, false, true,
|
||||
blockRefMode, Conf.Export.BlockEmbedMode, Conf.Export.FileAnnotationRefMode,
|
||||
Conf.Export.TagOpenMarker, Conf.Export.TagCloseMarker,
|
||||
"#", "#", // 这里固定使用 # 包裹标签,否则无法正确解析标签 https://github.com/siyuan-note/siyuan/issues/13857
|
||||
Conf.Export.BlockRefTextLeft, Conf.Export.BlockRefTextRight,
|
||||
Conf.Export.AddTitle, true, true, &map[string]*parse.Tree{})
|
||||
luteEngine := NewLute()
|
||||
EnableLuteInlineSyntax(luteEngine)
|
||||
enableLuteInlineSyntax(luteEngine)
|
||||
luteEngine.SetFootnotes(true)
|
||||
addBlockIALNodes(tree, false)
|
||||
md := treenode.FormatNode(tree.Root, luteEngine)
|
||||
|
|
|
@ -1036,7 +1036,7 @@ func CreateWithMarkdown(tags, boxID, hPath, md, parentID, id string, withMath bo
|
|||
luteEngine.SetHTMLTag2TextMark(true)
|
||||
if strings.HasPrefix(clippingHref, "https://ld246.com/article/") || strings.HasPrefix(clippingHref, "https://liuyun.io/article/") {
|
||||
// 改进链滴剪藏 https://github.com/siyuan-note/siyuan/issues/13117
|
||||
EnableLuteInlineSyntax(luteEngine)
|
||||
enableLuteInlineSyntax(luteEngine)
|
||||
}
|
||||
dom := luteEngine.Md2BlockDOM(md, false)
|
||||
retID, err = createDocsByHPath(box.ID, hPath, dom, parentID, id)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue