value1, value2, ... requiredOne or more numbers to compare. Pass them colon-separated (each value its own parameter) or as one JSON array. Values are read as numbers: a decimal comma becomes a decimal point, spaces are trimmed, and anything non-numeric counts as 0. With no values max returns empty; with exactly one value it returns that value unchanged.
{max:12:45:8}
{math:{max:3.14159:2.5:9.876}:2}
{max:[12,45,8]}
{max:45}
{max:-5:-20:-3}
{max:3.14:2.71:9.99}
{max:1,5:2,75}
{max:7:abc:3}
{max:-5::-20}
{max:[-5,"",-20]}