Comma separated links of names in YAML

I’m trying to setup my own version of a movie database. In YAML I’ve got fields for actors, for example
Actors: George Clooney, Brad Pitt

In the body-text, I would like to list the actors of the movie I’m currently in, comma separated, with internal links like this:
[[George Clooney]], [[Brad Pitt]]

I’ve gotten to:
= link(this.Actors)
but this makes one (1) link to [[George Clooney, Brad Pitt]]

How can I get this to work?

Actors: George Clooney, Brad Pitt

This format doesn’t give you an array, but a simple string with a comma included.
If you want an array/list of values you need to use one of this formats:

Actors: ["George Clooney", "Brad Pitt"]

\\ or 

Actors:
  - George Clooney
  - Brad Pitt

\\ use two spaces before the dash, not indentation

Lightning fast as always!

Thanks for clearing this up!

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.