Lines Matching full:link
35 const doxytooltipStyle = document.querySelector('link[href*="doxytooltip.css"]');
45 links.forEach((link) => {
46 tippy(link, {
61 const url = link.getAttribute('href');
62 const targetId = link.getAttribute('href').split('#')[1];
74 const cssLink = parsedDoc.querySelector(`link[href$="${cssName}"]`);
76 const link = document.createElement('link');
77 link.rel = 'stylesheet';
78 link.href = new URL(
82 tooltipShadow.appendChild(link);
89 const codeClasses = link.getElementsByTagName('code')[0].classList;