Vanessa 2025-03-03 12:14:36 +08:00
parent c26a6cf724
commit 08c7dc2a61

View File

@ -1503,7 +1503,7 @@ export const linkMenu = (protyle: IProtyle, linkElement: HTMLElement, focusText
// https://github.com/siyuan-note/siyuan/issues/6798
let anchor = linkElement.textContent.replace(Constants.ZWSP, "");
if (!anchor && linkAddress) {
anchor = linkAddress.replace("https://", "").replace("http://", "");
anchor = decodeURIComponent(linkAddress.replace("https://", "").replace("http://", ""));
if (anchor.length > Constants.SIZE_LINK_TEXT_MAX) {
anchor = anchor.substring(0, Constants.SIZE_LINK_TEXT_MAX) + "...";
}