From bf603c49c2edaa5fcbe42479421a336dcacf92b9 Mon Sep 17 00:00:00 2001
From: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sat, 11 Nov 2023 20:08:54 +0000
Subject: [PATCH] fix: sort rss feed by date
---
quartz/plugins/transformers/links.ts | 7 +++++++
1 files changed, 7 insertions(+), 0 deletions(-)
diff --git a/quartz/plugins/transformers/links.ts b/quartz/plugins/transformers/links.ts
index 02ced15..8d16136 100644
--- a/quartz/plugins/transformers/links.ts
+++ b/quartz/plugins/transformers/links.ts
@@ -18,11 +18,13 @@
markdownLinkResolution: TransformOptions["strategy"]
/** Strips folders from a link so that it looks nice */
prettyLinks: boolean
+ openLinksInNewTab: boolean
}
const defaultOptions: Options = {
markdownLinkResolution: "absolute",
prettyLinks: true,
+ openLinksInNewTab: false,
}
export const CrawlLinks: QuartzTransformerPlugin<Partial<Options> | undefined> = (userOpts) => {
@@ -52,6 +54,10 @@
node.properties.className ??= []
node.properties.className.push(isAbsoluteUrl(dest) ? "external" : "internal")
+ if (opts.openLinksInNewTab) {
+ node.properties.target = "_blank"
+ }
+
// don't process external links or intra-document anchors
const isInternal = !(isAbsoluteUrl(dest) || dest.startsWith("#"))
if (isInternal) {
@@ -72,6 +78,7 @@
simplifySlug(destCanonical as FullSlug),
) as SimpleSlug
outgoing.add(simple)
+ node.properties["data-slug"] = simple
}
// rewrite link internals if prettylinks is on
--
Gitblit v1.10.0