mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-30 05:18:49 +01:00
This commit is contained in:
parent
54a448f6b7
commit
bc5724fed6
1 changed files with 11 additions and 0 deletions
|
|
@ -565,6 +565,17 @@ export class Toolbar {
|
|||
});
|
||||
}
|
||||
types = [...new Set(types)];
|
||||
if (types.includes("block-ref") && item.getAttribute("data-subtype") === "d") {
|
||||
// https://github.com/siyuan-note/siyuan/issues/14299
|
||||
if (previousElement.getAttribute("data-id") === item.getAttribute("data-id")) {
|
||||
previousElement.setAttribute("data-subtype", "s");
|
||||
item.setAttribute("data-subtype", "s");
|
||||
}
|
||||
if (nextElement.getAttribute("data-id") === item.getAttribute("data-id")) {
|
||||
nextElement.setAttribute("data-subtype", "s");
|
||||
item.setAttribute("data-subtype", "s");
|
||||
}
|
||||
}
|
||||
if (index === 0 && previousElement && previousElement.nodeType !== 3 &&
|
||||
isArrayEqual(types, (previousElement.getAttribute("data-type") || "").split(" ")) &&
|
||||
hasSameTextStyle(item, previousElement, textObj)) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue