Skip to content

Conditions

Zynj-git edited this page Feb 3, 2021 · 4 revisions

Conditions are handled via Regular Expressions and refers to the expression(s) preceding the hash of attributes.

Basics and Important Information
symbol logical operator use case RegEx
, AND Create conditions that activate if EVERY/AND/ALL of the , separated expressions match.
| OR Create conditions that activate if EITHER/OR/ANY of the | separated phrases or sub-expressions match. RegEx
  • Notice! Comma (,) is a custom implementation that can be escaped with \ (\,) to prevent the creation of an AND condition.
syntax function use case RegEx
/expression/im Flags Wrap your conditions in forward-slashes / to select custom flags instead of the default gi behavior.

Clone this wiki locally