mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-27 03:48:48 +01:00
🐛 Tag search not escaped correctly https://github.com/siyuan-note/siyuan/issues/13919
This commit is contained in:
parent
9ea85963cc
commit
63ef661a67
3 changed files with 4 additions and 4 deletions
|
|
@ -933,7 +933,7 @@ func tagFromNode(node *ast.Node) (ret string) {
|
|||
|
||||
if n.IsTextMarkType("tag") {
|
||||
tagBuilder.WriteString("#")
|
||||
tagBuilder.WriteString(n.Text())
|
||||
tagBuilder.WriteString(n.Content())
|
||||
tagBuilder.WriteString("# ")
|
||||
}
|
||||
return ast.WalkContinue
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue