🎨 Improve escaping content for database primary key, relation, and rollup fields https://github.com/siyuan-note/siyuan/issues/13704

This commit is contained in:
Daniel 2025-01-16 17:40:59 +08:00
parent 713c55ed7a
commit e26bcfac62
No known key found for this signature in database
GPG Key ID: 86211BA83DF03017

View File

@ -296,7 +296,7 @@ func updateAttributeViewBlockText(updatedDefNodes map[string]*ast.Node) {
changedAv = true
}
if newContent != blockValue.Block.Content {
blockValue.Block.Content = newContent
blockValue.Block.Content = util.UnescapeHTML(newContent)
changedAv = true
}
break