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 <span v-pre>
so it renders literally, matching the existing escaped example in the
same file.
This commit is contained in:
Valentin Maerten
2026-06-30 22:19:55 +02:00
parent a61f8ade36
commit e415d7135e

View File

@@ -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 <span v-pre>`{{join " " .WORDS}}`</span>.
#### Shell Argument Parsing