From 7bcf27241ff30d08e937b47d9fc113b781f7cebe Mon Sep 17 00:00:00 2001
From: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed, 20 Dec 2023 03:03:40 +0000
Subject: [PATCH] fix: latex before syntax highlighting
---
quartz/plugins/index.ts | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/quartz/plugins/index.ts b/quartz/plugins/index.ts
index 23440fb..9753d2e 100644
--- a/quartz/plugins/index.ts
+++ b/quartz/plugins/index.ts
@@ -1,6 +1,6 @@
-import { StaticResources } from "../resources"
-import { FilePath, ServerSlug } from "../path"
-import { BuildCtx } from "../ctx"
+import { StaticResources } from "../util/resources"
+import { FilePath, FullSlug } from "../util/path"
+import { BuildCtx } from "../util/ctx"
export function getStaticResourcesFromPlugins(ctx: BuildCtx) {
const staticResources: StaticResources = {
@@ -28,7 +28,7 @@
declare module "vfile" {
// inserted in processors.ts
interface DataMap {
- slug: ServerSlug
+ slug: FullSlug
filePath: FilePath
}
}
--
Gitblit v1.10.0