Determine whether a string value is truthy for Wikidot's #if construct.
#if
The value is lowercased and trimmed before checking against the set of known falsy strings ("false", "null", "", "0").
"false"
"null"
""
"0"
The condition string to check.
true if the value is not in the falsy set.
true
Determine whether a string value is truthy for Wikidot's
#ifconstruct.The value is lowercased and trimmed before checking against the set of known falsy strings (
"false","null","","0").