From e415d7135e413bca08da4652c352153724dcf8ff Mon Sep 17 00:00:00 2001 From: Valentin Maerten Date: Tue, 30 Jun 2026 22:19:55 +0200 Subject: [PATCH] fix(docs): wrap join example in v-pre to fix VitePress build The inline `{{join " " .WORDS}}` example was parsed as a Vue interpolation, which broke the website build. Wrap it in so it renders literally, matching the existing escaped example in the same file. --- website/src/docs/reference/templating.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/src/docs/reference/templating.md b/website/src/docs/reference/templating.md index 3daaad5c..ccf968c0 100644 --- a/website/src/docs/reference/templating.md +++ b/website/src/docs/reference/templating.md @@ -566,7 +566,7 @@ tasks: ``` In pipeline form, `join` receives the list from the left-hand side. The -equivalent non-pipeline form is `{{join " " .WORDS}}`. +equivalent non-pipeline form is `{{join " " .WORDS}}`. #### Shell Argument Parsing