From 54e3e071d1c66dec3e04e8246c58fc2067877044 Mon Sep 17 00:00:00 2001
From: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon, 10 Jan 2022 17:00:45 +0000
Subject: [PATCH] fix popover regex
---
layouts/partials/popover.html | 3 ++-
config.toml | 1 -
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/config.toml b/config.toml
index 656b1c4..01d8d3d 100644
--- a/config.toml
+++ b/config.toml
@@ -1,5 +1,4 @@
baseURL = "https://quartz.jzhao.xyz/"
-#baseURL = "https://jackyzha0.github.io/quartz/"
languageCode = "en-us"
googleAnalytics = "G-XYFD95KB4J"
pygmentsUseClasses = true
diff --git a/layouts/partials/popover.html b/layouts/partials/popover.html
index 951f135..3a7de11 100644
--- a/layouts/partials/popover.html
+++ b/layouts/partials/popover.html
@@ -7,10 +7,11 @@
return template.content.firstChild
}
- const pathRegex = /\.\.(\/\.\.)*/
+ const pathRegex = /\.\.?(\/\.\.)*/
document.addEventListener("DOMContentLoaded", () => {
[...document.getElementsByClassName("internal-link")]
.forEach(li => {
+ console.log(li.dataset.src.replace(pathRegex, ''))
const linkDest = content[li.dataset.src.replace(pathRegex, '')]
if (linkDest) {
const popoverElement = `<div class="popover">
--
Gitblit v1.10.0