🐛 Some symbols should not be escaped to avoid inaccurate searches

This commit is contained in:
Daniel 2024-01-26 10:41:40 +08:00
parent 1e4bb45540
commit 18b8597794
No known key found for this signature in database
GPG key ID: 86211BA83DF03017

View file

@ -28,6 +28,7 @@ import (
"github.com/88250/gulu"
"github.com/88250/lute"
"github.com/88250/lute/ast"
"github.com/88250/lute/html"
"github.com/88250/lute/parse"
"github.com/siyuan-note/filelock"
"github.com/siyuan-note/siyuan/kernel/util"
@ -87,7 +88,7 @@ func IALStr(n *ast.Node) string {
if 1 > len(n.KramdownIAL) {
return ""
}
return string(parse.IAL2Tokens(n.KramdownIAL))
return html.UnescapeString(string(parse.IAL2Tokens(n.KramdownIAL)))
}
func RootChildIDs(rootID string) (ret []string) {