+++
names: [ "Derek Perkins", "Joe Bergevin", "Tanner Linsley" ]
+++
You can then use apply as follows:
{{ apply .Params.names "urlize" "." }}
Which will result in the following:
"derek-perkins", "joe-bergevin", "tanner-linsley"
Thanks. An error on my part regarding the TOML front matter in my post.
Just so I understand, if I would like each name to be comma separated and urlized, I would need to use a range with delimit instead of apply. Is that correct?