Fix erroridf example

This commit is contained in:
Joe Mooring 2023-12-03 15:08:42 -08:00 committed by Joe Mooring
parent 9ae8e91994
commit 4dd2d64153

View File

@ -20,15 +20,15 @@ The `erroridf` function evaluates the format string, then prints the result to t
This template code: This template code:
```go-html-template ```go-html-template
{{ erroridf "The %q shortcode was unable to find %s. See %s" .Name $file .Position }} {{ erroridf "error-42" "You should consider fixing this." }}
``` ```
Produces this console log: Produces this console log:
```text ```text
ERROR You should consider fixing this. ERROR You should consider fixing this.
If you feel that this should not be logged as an ERROR, you can ignore it by adding this to your site config: You can suppress this error by adding the following to your site configuration:
ignoreErrors = ["error-42"] ignoreErrors = ['error-42']
``` ```
To suppress this message: To suppress this message: