Skip to content

Commit

Permalink
Merge pull request #474 from zaigham/patch-5
Browse files Browse the repository at this point in the history
Update index.md
  • Loading branch information
Ibochkarev authored Sep 15, 2023
2 parents 4913e2f + 64f541b commit 11dd3e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion en/building-sites/tag-syntax/output-filters/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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!`]]``` |
Expand Down

0 comments on commit 11dd3e9

Please sign in to comment.