Vanessa 2024-05-27 09:36:14 +08:00
parent 456e53ebfd
commit c4d72c16c3

View file

@ -46,7 +46,8 @@ export const initBlockPopover = (app: App) => {
}
if (!tip) {
const href = aElement.getAttribute("data-href") || "";
tip = href.substring(0, Constants.SIZE_TITLE) || "";
// 链接地址强制换行 https://github.com/siyuan-note/siyuan/issues/11539
tip = `<span style="word-break: break-all">${href.substring(0, Constants.SIZE_TITLE)}</span>`;
const title = aElement.getAttribute("data-title");
if (tip && isLocalPath(href) && !aElement.classList.contains("b3-tooltips")) {
let assetTip = tip;