fix: correctly handle local links

This commit is contained in:
Blaster4385 2024-04-22 00:53:41 +05:30
parent 740ef74b5c
commit 79eb9cfeeb
3 changed files with 5 additions and 2 deletions

View file

@ -4,7 +4,7 @@ Hey folks, I'm Venkatesh Chaturvedi, currently working as an Associate Support E
## $ ls blogs/ ## $ ls blogs/
- **[git-101](https://tablaster.dev/git-101)** - **[git-101](/git-101)**
## $ ls projects/ ## $ ls projects/

View file

@ -36,7 +36,7 @@
<body> <body>
<main class="container"> <main class="container">
<header id="header"> <header id="header">
<h1>$ tablaster.dev</h1> <h1><a href="/">$ tablaster.dev</a></h1>
</header> </header>
<div id="markdown"></div> <div id="markdown"></div>
</main> </main>

View file

@ -17,6 +17,9 @@ function convertMarkdownToHTML(markdown) {
function addBlankTargetToLinks() { function addBlankTargetToLinks() {
const links = document.querySelectorAll('a'); const links = document.querySelectorAll('a');
links.forEach(link => { links.forEach(link => {
if (!link.getAttribute('href').startsWith('http') && !link.getAttribute('href').startsWith('https')) {
return;
}
link.setAttribute('target', '_blank'); link.setAttribute('target', '_blank');
}); });
} }