if (!anchor.hasAttribute('data-from-md')) { if (webviewLib.handleInternalLink(event, anchor)) return; event.preventDefault(); if (anchor.getAttribute('href')) webviewLib.options_.postMessage(anchor.getAttribute('href')); if (anchor.getAttribute('xlink:href')) webviewLib.options_.postMessage(anchor.getAttribute('xlink:href')); return; } // If this is an internal link, jump to the anchor directly if (anchor.hasAttribute('data-from-md')) { if (webviewLib.handleInternalLink(event, anchor)) return; } });