pages.*/*: replace {{" "}} with "{{ }}" (#15034)

The latter notation is preferred by the style guide.
This commit is contained in:
Lena
2024-12-05 18:27:27 +01:00
committed by GitHub
parent 1eb5d09fff
commit d74e776a9c
41 changed files with 45 additions and 45 deletions

View File

@@ -30,4 +30,4 @@
- Installeer certificaatbestanden op de opgegeven locaties (handig voor automatische certificaatvernieuwing):
`acme.sh --install-cert -d {{voorbeeld.com}} --key-file {{/pad/naar/voorbeeld.com.key}} --fullchain-file {{/pad/naar/voorbeeld.com.cer}} --reloadcmd {{"systemctl force-reload nginx"}}`
`acme.sh --install-cert -d {{voorbeeld.com}} --key-file {{/pad/naar/voorbeeld.com.key}} --fullchain-file {{/pad/naar/voorbeeld.com.cer}} --reloadcmd "{{systemctl force-reload nginx}}"`

View File

@@ -9,7 +9,7 @@
- Stuur data naar een benoemde pipe en stuur het commando naar de achtergrond:
`echo {{"Hello World"}} > {{pad/naar/pipe}} &`
`echo "{{Hello World}}" > {{pad/naar/pipe}} &`
- Ontvang data van benoemde pipe:

View File

@@ -17,7 +17,7 @@
- Wijs meerdere waarden toe aan meerdere variabelen:
`read {{_ variable1 _ variable2}} <<< {{"De achternaam is Bond"}}`
`read {{_ variable1 _ variable2}} <<< "{{De achternaam is Bond}}"`
- Laat backslash (\\) niet optreden als een escape-teken: