mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-16 22:50:13 +01:00
🎨 Double quotes in inline elements are no longer converted to HTML entities when pasting Markdown https://github.com/siyuan-note/siyuan/issues/14503
This commit is contained in:
parent
94fe712efd
commit
17de3bc8b1
4 changed files with 20 additions and 10 deletions
|
|
@ -257,7 +257,8 @@ func nodeStaticContent(node *ast.Node, excludeTypes []string, includeTextMarkATi
|
|||
}
|
||||
|
||||
if !strings.HasPrefix(n.TextMarkAHref, "assets/") || includeAssetPath {
|
||||
buf.WriteString(" " + util.UnescapeHTML(n.TextMarkAHref))
|
||||
href := util.UnescapeHTML(n.TextMarkAHref)
|
||||
buf.WriteString(" " + util.UnescapeHTML(href))
|
||||
}
|
||||
}
|
||||
case ast.NodeBackslashContent:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue