fix: correctly handle local links
This commit is contained in:
parent
9260dc0239
commit
57f50462a5
3 changed files with 5 additions and 2 deletions
|
@ -4,7 +4,7 @@ Hey folks, I'm Venkatesh Chaturvedi, currently working as an Associate Support E
|
|||
|
||||
## $ ls blogs/
|
||||
|
||||
- **[git-101](https://tablaster.dev/git-101)**
|
||||
- **[git-101](/git-101)**
|
||||
|
||||
## $ ls projects/
|
||||
|
||||
|
|
|
@ -36,7 +36,7 @@
|
|||
<body>
|
||||
<main class="container">
|
||||
<header id="header">
|
||||
<h1>$ tablaster.dev</h1>
|
||||
<h1><a href="/">$ tablaster.dev</a></h1>
|
||||
</header>
|
||||
<div id="markdown"></div>
|
||||
</main>
|
||||
|
|
|
@ -17,6 +17,9 @@ function convertMarkdownToHTML(markdown) {
|
|||
function addBlankTargetToLinks() {
|
||||
const links = document.querySelectorAll('a');
|
||||
links.forEach(link => {
|
||||
if (!link.getAttribute('href').startsWith('http') && !link.getAttribute('href').startsWith('https')) {
|
||||
return;
|
||||
}
|
||||
link.setAttribute('target', '_blank');
|
||||
});
|
||||
}
|
Loading…
Reference in a new issue