mirror of
https://github.com/siyuan-note/siyuan.git
synced 2026-01-29 19:56:10 +01:00
This commit is contained in:
parent
64bea9c004
commit
aaedbb2a7f
5 changed files with 26 additions and 4 deletions
|
|
@ -1096,6 +1096,12 @@ func exportTree(tree *parse.Tree, wysiwyg, expandKaTexMacros bool) (ret *parse.T
|
|||
status := processFileAnnotationRef(refID, n)
|
||||
unlinks = append(unlinks, n)
|
||||
return status
|
||||
} else if n.IsTextMarkType("tag") {
|
||||
if !wysiwyg {
|
||||
n.Type = ast.NodeText
|
||||
n.Tokens = []byte(Conf.Export.TagOpenMarker + n.TextMarkTextContent + Conf.Export.TagCloseMarker)
|
||||
return ast.WalkContinue
|
||||
}
|
||||
}
|
||||
case ast.NodeFileAnnotationRef:
|
||||
refIDNode := n.ChildByType(ast.NodeFileAnnotationRefID)
|
||||
|
|
|
|||
|
|
@ -399,7 +399,7 @@ func query2Stmt(queryStr string) (ret string) {
|
|||
if !entering {
|
||||
return ast.WalkContinue
|
||||
}
|
||||
if ast.NodeTag == n.Type {
|
||||
if ast.NodeTag == n.Type || (n.IsTextMarkType("tag")) {
|
||||
tags = append(tags, n.Text())
|
||||
}
|
||||
return ast.WalkContinue
|
||||
|
|
|
|||
|
|
@ -91,6 +91,14 @@ func RemoveTag(label string) (err error) {
|
|||
}
|
||||
}
|
||||
}
|
||||
nodeTags = node.ChildrenByType(ast.NodeTextMark)
|
||||
for _, nodeTag := range nodeTags {
|
||||
if nodeTag.IsTextMarkType("tag") {
|
||||
if label == nodeTag.TextMarkTextContent {
|
||||
unlinks = append(unlinks, nodeTag)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
for _, n := range unlinks {
|
||||
n.Unlink()
|
||||
|
|
@ -181,6 +189,14 @@ func RenameTag(oldLabel, newLabel string) (err error) {
|
|||
}
|
||||
}
|
||||
}
|
||||
nodeTags = node.ChildrenByType(ast.NodeTextMark)
|
||||
for _, nodeTag := range nodeTags {
|
||||
if nodeTag.IsTextMarkType("tag") {
|
||||
if oldLabel == nodeTag.TextMarkTextContent {
|
||||
nodeTag.TextMarkTextContent = strings.ReplaceAll(nodeTag.TextMarkTextContent, oldLabel, newLabel)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
util.PushEndlessProgress(fmt.Sprintf(Conf.Language(111), tree.Root.IALAttr("title")))
|
||||
if err = writeJSONQueue(tree); nil != err {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue