Example: a metadata schema is set up to have a multiple textfield property that would be used to store image urls (external, for argument's sake)
If %asset_metadata_photos% were to be inserted in the bodycopy it would render just what the docos tell you: all values separated by semicolon. In the case of image urls, that's not quite what I'm after - let's say I wanted img tags rendered for each image url stored. Reading up on keyword modifiers, I've come up with the following:
...but that feels wrong on so many levels. Let's examine the code for a second:
The code should actually be a little bit longer, with a check to see if the metadata value is empty (so as not to render an image tag with an empty src).
Is there a nicer, saner way to accomplish the same thing?