From 2a38c4046468afc765663f218808d1cd386ce64e Mon Sep 17 00:00:00 2001 From: Jonathan Fisher Date: Wed, 1 Mar 2023 14:29:33 -0800 Subject: [PATCH] tpl: Add hasSuffix alias strings.HasPrefix already has an alias of hasPrefix but strings.HasSuffix has no such alias. This PR adds a hasSuffix alias to the tpl function with corresponding function documentation. It also adds a Minor update to the hasPrefix function documentation re: keywords and relatedfuncs. Completes https://github.com/gohugoio/hugo/issues/10474 --- content/en/functions/hasPrefix.md | 4 ++-- content/en/functions/hasSuffix.md | 21 +++++++++++++++++++++ 2 files changed, 23 insertions(+), 2 deletions(-) create mode 100644 content/en/functions/hasSuffix.md diff --git a/content/en/functions/hasPrefix.md b/content/en/functions/hasPrefix.md index 99d5ba8190..cf29315e26 100644 --- a/content/en/functions/hasPrefix.md +++ b/content/en/functions/hasPrefix.md @@ -9,11 +9,11 @@ categories: [functions] menu: docs: parent: "functions" -keywords: [] +keywords: [strings] signature: ["hasPrefix STRING PREFIX"] workson: [] hugoversion: -relatedfuncs: [] +relatedfuncs: [hasSuffix] deprecated: false aliases: [] --- diff --git a/content/en/functions/hasSuffix.md b/content/en/functions/hasSuffix.md new file mode 100644 index 0000000000..9906cc2c3b --- /dev/null +++ b/content/en/functions/hasSuffix.md @@ -0,0 +1,21 @@ +--- +title: hassuffix +linktitle: hasSuffix +description: Tests whether a string ends with suffix. +date: 2023-03-01 +publishdate: 2023-03-01 +lastmod: 2023-03-01 +categories: [functions] +menu: +docs: +parent: "functions" +keywords: [strings] +signature: ["hasSuffix STRING SUFFIX"] +workson: [] +hugoversion: +relatedfuncs: [hasPrefix] +deprecated: false +aliases: [] +--- + +* `{{ hasSuffix "Hugo" "go" }}` → true \ No newline at end of file