From ecc3345a3fd106b9392892dae20b22e850ed9ab8 Mon Sep 17 00:00:00 2001 From: Duncan McClean Date: Wed, 29 May 2024 15:14:38 +0100 Subject: [PATCH] Revert "Document `select` modifier (#1351)" (#1357) This reverts commit 855b3c51622c14be9da76e06634bd21a6a0510dd. --- content/collections/modifiers/select.md | 41 ------------------------- 1 file changed, 41 deletions(-) delete mode 100644 content/collections/modifiers/select.md diff --git a/content/collections/modifiers/select.md b/content/collections/modifiers/select.md deleted file mode 100644 index e11b4b3cb..000000000 --- a/content/collections/modifiers/select.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -id: 864d101a-c0a2-42d8-a644-80440316de8b -blueprint: modifiers -title: Select -modifier_types: - - array - - utility ---- -Retrieves the selected values of a given array. - -```yaml -games: - - - feeling: love - title: Dominion - publisher: Rio Grande Games - - - feeling: love - title: Netrunner - publisher: Wizards of the Coast - - - feeling: hate - title: Chutes and Ladders - publisher: Unknown -``` - -``` -{{ games | select('title', 'publisher') }} -``` - -```yaml -- - title: Dominion - publisher: Rio Grande Games -- - title: Netrunner - publisher: Wizards of the Coast -- - title: Chutes and Ladders - publisher: Unknown -```