mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-21 00:50:13 +01:00
This commit is contained in:
parent
f5135faf29
commit
d2cfe413a2
1 changed files with 2 additions and 1 deletions
|
|
@ -258,7 +258,8 @@ export const paste = async (protyle: IProtyle, event: (ClipboardEvent | DragEven
|
||||||
if (isDynamicRef(textPlain)) {
|
if (isDynamicRef(textPlain)) {
|
||||||
protyle.toolbar.setInlineMark(protyle, "block-ref", "range", {
|
protyle.toolbar.setInlineMark(protyle, "block-ref", "range", {
|
||||||
type: "id",
|
type: "id",
|
||||||
color: `${textPlain.substring(2, 22 + 2)}${Constants.ZWSP}s${Constants.ZWSP}${Lute.EscapeHTMLStr(range.toString())}`
|
// range 不能 escape,否则 https://github.com/siyuan-note/siyuan/issues/8359
|
||||||
|
color: `${textPlain.substring(2, 22 + 2)}${Constants.ZWSP}s${Constants.ZWSP}${range.toString()}`
|
||||||
});
|
});
|
||||||
return;
|
return;
|
||||||
} else if (isFileAnnotation(textPlain)) {
|
} else if (isFileAnnotation(textPlain)) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue