value1:value2:... required default (none - at least one value)The numbers to average, each as a separate colon-separated argument: {avg:12:45:8}. Give two or more for a real mean; a single value returns itself and no values returns an empty string. As an alternative, pass one JSON array instead: {avg:[12,45,8]}. Decimal commas are normalized to dots; non-numeric text is read as 0 (but still counts in the divisor); in the JSON form empty-string entries are dropped before averaging.
{avg:10:20:30}
{avg:3:4}
{avg:5}
{avg:[10,20,30]}
{avg:12:45:8}
{avg:1,5:2,5}
{avg:7:8:abc}
{avg:[10,"",30]}