From 4b303fd4925fe0a642780f824f19fdf642c81cde Mon Sep 17 00:00:00 2001 From: Austin Bao <35129149+xy769@users.noreply.github.com> Date: Thu, 7 May 2026 22:02:11 +0800 Subject: [PATCH 1/2] Fix: separate code blocks for jen build commands Issue #4: Fix indentation or formatting in a documentation code example. Split the three jen build commands into individual code blocks for clarity. From 9e679a8325c52505647d1eb6eeab66b0a4d31792 Mon Sep 17 00:00:00 2001 From: Austin Bao <35129149+xy769@users.noreply.github.com> Date: Thu, 7 May 2026 22:02:51 +0800 Subject: [PATCH 2/2] Fix: split merged code blocks in jen build section Each command should be in its own code block for readability. --- docs/content/docs/cli.mdx | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/docs/content/docs/cli.mdx b/docs/content/docs/cli.mdx index b14f20d..bb0fba2 100644 --- a/docs/content/docs/cli.mdx +++ b/docs/content/docs/cli.mdx @@ -38,20 +38,24 @@ Generate a static site from all non-dynamic routes. - ```bash npx jen build npx jen build --adapter=vercel npx jen build - --adapter=cloudflare ``` + ```bash npx jen build ``` + ```bash npx jen build --adapter=vercel ``` + ```bash npx jen build --adapter=cloudflare ``` - ```bash pnpm jen build pnpm jen build --adapter=vercel pnpm jen build - --adapter=cloudflare ``` + ```bash pnpm jen build ``` + ```bash pnpm jen build --adapter=vercel ``` + ```bash pnpm jen build --adapter=cloudflare ``` - ```bash yarn jen build yarn jen build --adapter=vercel yarn jen build - --adapter=cloudflare ``` + ```bash yarn jen build ``` + ```bash yarn jen build --adapter=vercel ``` + ```bash yarn jen build --adapter=cloudflare ``` - ```bash bunx jen build bunx jen build --adapter=vercel bunx jen build - --adapter=cloudflare ``` + ```bash bunx jen build ``` + ```bash bunx jen build --adapter=vercel ``` + ```bash bunx jen build --adapter=cloudflare ```