🎨 Use the path ending with / when loading the widget https://github.com/siyuan-note/siyuan/issues/10520

This commit is contained in:
Daniel 2024-03-13 21:49:53 +08:00
parent c0a1e2420b
commit 667aa38d42
No known key found for this signature in database
GPG key ID: 86211BA83DF03017

View file

@ -447,7 +447,9 @@ export const hintRenderTemplate = (value: string, protyle: IProtyle, nodeElement
export const hintRenderWidget = (value: string, protyle: IProtyle) => {
focusByRange(protyle.toolbar.range);
insertHTML(protyle.lute.SpinBlockDOM(`<iframe src="/widgets/${value}" data-subtype="widget" border="0" frameborder="no" framespacing="0" allowfullscreen="true"></iframe>`), protyle, true);
// src 地址以 / 结尾
// Use the path ending with `/` when loading the widget https://github.com/siyuan-note/siyuan/issues/10520
insertHTML(protyle.lute.SpinBlockDOM(`<iframe src="/widgets/${value}/" data-subtype="widget" border="0" frameborder="no" framespacing="0" allowfullscreen="true"></iframe>`), protyle, true);
hideElements(["util"], protyle);
};