From 001c166825575d28a07257a969081fa74668c2b5 Mon Sep 17 00:00:00 2001
From: Matt Vogel <mainmoniker@googlemail.com>
Date: Thu, 07 Mar 2024 01:25:39 +0000
Subject: [PATCH] fix(tag): move hash to sass styling only (#930)
---
quartz/plugins/index.ts | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/quartz/plugins/index.ts b/quartz/plugins/index.ts
index c83455e..f35d053 100644
--- a/quartz/plugins/index.ts
+++ b/quartz/plugins/index.ts
@@ -1,5 +1,5 @@
import { StaticResources } from "../util/resources"
-import { FilePath, ServerSlug } from "../util/path"
+import { FilePath, FullSlug } from "../util/path"
import { BuildCtx } from "../util/ctx"
export function getStaticResourcesFromPlugins(ctx: BuildCtx) {
@@ -28,7 +28,8 @@
declare module "vfile" {
// inserted in processors.ts
interface DataMap {
- slug: ServerSlug
+ slug: FullSlug
filePath: FilePath
+ relativePath: FilePath
}
}
--
Gitblit v1.10.0