cobalt / web /src /components /misc /OuterLink.svelte
playingapi's picture
Upload 376 files
43a06dc verified
raw
history blame contribute delete
502 Bytes
<script lang="ts">
export let href: string;
// rel is passed by MDsveX, but we don't need it, so we just ignore it
// no way to change this behavior atm (https://github.com/pngwn/MDsveX/issues/609)
export let rel: string = "";
rel;
const [ target, _rel ] = (() => {
try {
new URL(href)
return [ '_blank', 'noopener noreferrer' ];
} catch {}
return [];
})();
</script>
<a rel={_rel} {target} {href}>
<slot></slot>
</a>