From 66959d9f18768beb9531d51241978731bff8a305 Mon Sep 17 00:00:00 2001 From: Avdhut <32304774+Malankar@users.noreply.github.com> Date: Fri, 2 Sep 2022 09:37:52 +0530 Subject: templates: Document `httpError` function (#4972) * added the httpError function into the document * Update templates.go * Update templates.go * Fix gofmt Co-authored-by: Matt Holt --- modules/caddyhttp/templates/templates.go | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'modules/caddyhttp/templates') diff --git a/modules/caddyhttp/templates/templates.go b/modules/caddyhttp/templates/templates.go index 40e5bbe..29d1650 100644 --- a/modules/caddyhttp/templates/templates.go +++ b/modules/caddyhttp/templates/templates.go @@ -189,6 +189,14 @@ func init() { // {{.RespHeader.Set "Field-Name" "val"}} // ``` // +// ##### `httpError` +// +// Returns an error with the given status code to the HTTP handler chain. +// +// ``` +// {{if not (fileExists $includedFile)}}{{httpError 404}}{{end}} +// ``` +// // ##### `splitFrontMatter` // // Splits front matter out from the body. Front matter is metadata that appears at the very beginning of a file or string. Front matter can be in YAML, TOML, or JSON formats: -- cgit v1.2.3