Fix "ref-issue" handling in markup (#35739) (#35771)

Backport #35739 by wxiaoguang

This is a follow up for #35662, and also fix #31181, help #30275, fix
#31161

Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
This commit is contained in:
Giteabot
2025-10-29 19:03:02 +08:00
committed by GitHub
parent 6aa1a1e54d
commit 45a88e09af
10 changed files with 74 additions and 90 deletions

View File

@@ -209,3 +209,7 @@ export function showTemporaryTooltip(target: Element, content: Content): void {
},
});
}
export function getAttachedTippyInstance(el: Element): Instance | null {
return el._tippy ?? null;
}