For my movie database, I want to combine multiple YAML keys onto one line.
My YAML is constructed as:
medium:
- series
broadcaster:
- "[[Amazon Prime]]"
Preferably the outcome would be for example: series (Amazon Prime). Where “Amazon Prime” would be clickable as a link.
When only using broadcaster I get the desired result, namely a clickable link. but when adding anything else (like the brackets) the link disappears and only string-text appears.
I’ve tried formula’s like medium+" ("+broadcaster+")" and other elaborate formulas to contruct a link, but as soon as I add the + to expand the formula the link breaks.
Any help on constructing the single line with both strings and links would be very helpful!!

