From d5e6cb618050c558c7f78e7d5cdbfaf081c15013 Mon Sep 17 00:00:00 2001 From: Joe Mooring Date: Thu, 10 Apr 2025 09:56:41 -0700 Subject: [PATCH] content: Remove expired new-in badges --- content/en/functions/collections/Where.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/content/en/functions/collections/Where.md b/content/en/functions/collections/Where.md index 1df84afc4..84fd1d21e 100644 --- a/content/en/functions/collections/Where.md +++ b/content/en/functions/collections/Where.md @@ -87,7 +87,6 @@ Use any of the following logical operators: : (`bool`) Reports whether the given field value (a slice) contains one or more elements in common with `VALUE`. See [details](/functions/collections/intersect). `like` -: {{< new-in 0.116.0 />}} : (`bool`) Reports whether the given field value matches the [regular expression](g) specified in `VALUE`. Use the `like` operator to compare `string` values. The `like` operator returns `false` when comparing other data types to the regular expression. > [!note] @@ -167,8 +166,6 @@ For example, to return a collection of pages where any of the terms in the "genr ## Regular expression comparison -{{< new-in 0.116.0 />}} - To return a collection of pages where the "author" page parameter begins with either "victor" or "Victor": ```go-html-template