mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-17 07:00:12 +01:00
🎨
This commit is contained in:
parent
c63171bc4f
commit
244d360ef0
1 changed files with 5 additions and 2 deletions
|
|
@ -23,9 +23,12 @@ export const blockRender = (protyle: IProtyle, element: Element, top?: number) =
|
|||
}
|
||||
// 需置于请求返回前,否则快速滚动会导致重复加载 https://ld246.com/article/1666857862494?r=88250
|
||||
item.setAttribute("data-render", "true");
|
||||
item.querySelector(".protyle-wysiwyg__embed")?.remove();
|
||||
genRenderFrame(item);
|
||||
item.style.height = (item.clientHeight - 4) + "px"; // 减少抖动 https://ld246.com/article/1668669380171
|
||||
const embedElement = item.querySelector(".protyle-wysiwyg__embed");
|
||||
if (embedElement) {
|
||||
item.style.height = (item.clientHeight - 4) + "px"; // 减少抖动 https://ld246.com/article/1668669380171
|
||||
embedElement.remove();
|
||||
}
|
||||
const content = Lute.UnEscapeHTMLStr(item.getAttribute("data-content"));
|
||||
let breadcrumb: boolean | string = item.getAttribute("breadcrumb");
|
||||
if (breadcrumb) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue