From d3134a17dc3c4edbb7117d2759ad83b67918acb5 Mon Sep 17 00:00:00 2001 From: Felix Schneider <99918022+trueberryless@users.noreply.github.com> Date: Mon, 15 Dec 2025 19:53:41 +0100 Subject: [PATCH 1/2] fix: improve wording partial reference section Co-authored-by: Armand Philippot Co-authored-by: Tim <69715898+thegatesdev@users.noreply.github.com> --- src/content/docs/en/reference/container-reference.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/en/reference/container-reference.mdx b/src/content/docs/en/reference/container-reference.mdx index 0f16a713e356f..62504f479959c 100644 --- a/src/content/docs/en/reference/container-reference.mdx +++ b/src/content/docs/en/reference/container-reference.mdx @@ -430,7 +430,7 @@ const json = await response.json();

-Whether or not the Container API renders components as if they were [page partials](/en/basics/astro-pages/#page-partials). This is usually the behavior you want when rendering `components.boolean` so you can render components without a full page shell. +Whether or not the Container API renders components as if they were [page partials](/en/basics/astro-pages/#page-partials). This is usually the behavior you want, as it allows you to render components without a full page shell. To render a component as a full Astro page, including ``, you can opt-out of this behavior by setting `partial` to `false`: From 38f5fa0c1574356d1cbfe12fe07f5dbb5566272d Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Tue, 16 Dec 2025 13:15:01 +0100 Subject: [PATCH 2/2] Apply Sarah's suggestion Co-authored-by: Sarah Rainsberger <5098874+sarah11918@users.noreply.github.com> --- src/content/docs/en/reference/container-reference.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/en/reference/container-reference.mdx b/src/content/docs/en/reference/container-reference.mdx index 62504f479959c..7684943feb9e6 100644 --- a/src/content/docs/en/reference/container-reference.mdx +++ b/src/content/docs/en/reference/container-reference.mdx @@ -430,7 +430,7 @@ const json = await response.json();

-Whether or not the Container API renders components as if they were [page partials](/en/basics/astro-pages/#page-partials). This is usually the behavior you want, as it allows you to render components without a full page shell. +Whether or not the Container API renders components as if they were [page partials](/en/basics/astro-pages/#page-partials). The default `true` setting renders the component in isolation without a full page shell. To render a component as a full Astro page, including ``, you can opt-out of this behavior by setting `partial` to `false`: