mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
d171d1543d
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
21 lines
407 B
Markdown
21 lines
407 B
Markdown
---
|
|
title: hasprefix
|
|
linktitle: hasPrefix
|
|
description: Tests whether a string begins with prefix.
|
|
date: 2017-02-01
|
|
publishdate: 2017-02-01
|
|
lastmod: 2017-02-01
|
|
categories: [functions]
|
|
menu:
|
|
docs:
|
|
parent: "functions"
|
|
keywords: [strings]
|
|
signature: ["hasPrefix STRING PREFIX"]
|
|
workson: []
|
|
hugoversion:
|
|
relatedfuncs: [hasSuffix]
|
|
deprecated: false
|
|
aliases: []
|
|
---
|
|
|
|
* `{{ hasPrefix "Hugo" "Hu" }}` → true
|