From 24348b24a94c5f9ca285642b751e6798b92eedd9 Mon Sep 17 00:00:00 2001
From: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue, 20 Jun 2023 05:50:25 +0000
Subject: [PATCH] fix: parsing wikilinks that have codeblock anchors, scroll to anchor
---
quartz/worker.ts | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/quartz/worker.ts b/quartz/worker.ts
index e2c278f..be2c0d1 100644
--- a/quartz/worker.ts
+++ b/quartz/worker.ts
@@ -6,6 +6,6 @@
// only called from worker thread
export async function parseFiles(baseDir: string, fps: string[], verbose: boolean) {
- const parse = createFileParser(baseDir, fps, verbose)
+ const parse = createFileParser(transformers, baseDir, fps, verbose)
return parse(processor)
}
--
Gitblit v1.10.0