From 4e23e6724493a8d112c6ff22e14cf4aabd5e9af1 Mon Sep 17 00:00:00 2001
From: Oskar Manhart <52569953+oskardotglobal@users.noreply.github.com>
Date: Mon, 11 Sep 2023 06:11:42 +0000
Subject: [PATCH] feat: plugin for remark-breaks (#467)
---
quartz/plugins/transformers/links.ts | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/quartz/plugins/transformers/links.ts b/quartz/plugins/transformers/links.ts
index 26c4a32..02ced15 100644
--- a/quartz/plugins/transformers/links.ts
+++ b/quartz/plugins/transformers/links.ts
@@ -5,7 +5,6 @@
SimpleSlug,
TransformOptions,
_stripSlashes,
- joinSegments,
simplifySlug,
splitAnchor,
transformLink,
@@ -54,7 +53,8 @@
node.properties.className.push(isAbsoluteUrl(dest) ? "external" : "internal")
// don't process external links or intra-document anchors
- if (!(isAbsoluteUrl(dest) || dest.startsWith("#"))) {
+ const isInternal = !(isAbsoluteUrl(dest) || dest.startsWith("#"))
+ if (isInternal) {
dest = node.properties.href = transformLink(
file.data.slug!,
dest,
@@ -77,6 +77,7 @@
// rewrite link internals if prettylinks is on
if (
opts.prettyLinks &&
+ isInternal &&
node.children.length === 1 &&
node.children[0].type === "text" &&
!node.children[0].value.startsWith("#")
--
Gitblit v1.10.0