From 64f541bf8608a4f093a79062744c22a695750b82 Mon Sep 17 00:00:00 2001 From: Zaigham R Date: Fri, 15 Sep 2023 15:54:42 +0500 Subject: [PATCH] Update index.md Fixes #473 --- en/building-sites/tag-syntax/output-filters/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/building-sites/tag-syntax/output-filters/index.md b/en/building-sites/tag-syntax/output-filters/index.md index f4ce3dbf0..ccd06d0a2 100644 --- a/en/building-sites/tag-syntax/output-filters/index.md +++ b/en/building-sites/tag-syntax/output-filters/index.md @@ -59,7 +59,7 @@ The following table lists some of the existing modifiers and shows examples of t | islowerthan, islessthan, lowerthan, lessthan, islt, lt | Compares to a passed value, and moves on if it is less than the value. Used with "then" and "else". | ```[[+numbooks:lt=`5`:then=`There are less than 5 books`:else=`There are more than 5 books`]]``` | | contains | Checks to see if value contains a passed string. | ```[[+author:contains=`Samuel Clemens`:then=`Mark Twain`]]``` | | containsnot | Check to see if the value does not contain the passed string. | ```[[+author:containsnot=`Samuel Clemens`:then=`Somebody Else`]]``` | -| in, IN, inarray, inArray | Check to see if the value is in an array (comma seperated) | ```[[+id:in=`5,15,22`:then=`Yes in array`]]` ``` | +| in, IN, inarray, inArray | Check to see if the value is in an array (comma separated) | ```[[+id:in=`5,15,22`:then=`Yes in array`]] ``` | | hide | Will check earlier conditions, and hide the element if the conditions were met. | ```[[+numbooks:lt=`1`:hide]]``` | | show | Will check earlier conditions, and show the element if the conditions were met. | ```[[+numbooks:gt=`0`:show]] ``` | | then | Conditional usage. | ```[[+numbooks:gt=`0`:then=`Now available!`]]``` |