Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update index.md #474

Merged
merged 1 commit into from
Sep 15, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading