From 3187ad3f5b6be9cab82c56604d824882146023be Mon Sep 17 00:00:00 2001 From: Glen Huang Date: Mon, 6 Oct 2025 22:02:33 +0800 Subject: [PATCH] site: fix page not updating bug --- site/src/routes/docs/[...path]/+page.svelte | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/site/src/routes/docs/[...path]/+page.svelte b/site/src/routes/docs/[...path]/+page.svelte index 27c18c1d5..7d13e1c09 100644 --- a/site/src/routes/docs/[...path]/+page.svelte +++ b/site/src/routes/docs/[...path]/+page.svelte @@ -1,13 +1,12 @@
-{@html toc} +{@html data.toc}
-{@html content} -{JSON.stringify(frontmatter)} +{@html data.content} +{JSON.stringify(data.frontmatter)}