Hello,
I'm using Mp3tag version 3.12 and need assistance with my export template. My goal is to create separate links for each artist when there are multiple artists in the "artist" field, separated by a comma. The same should apply to the "mixartist" field if it's available.
I tried using the $meta_sep()
function in my export template to handle this situation, but it seems that this function isn't supported in version 3.12.
Here's the export template I'm using:
htmlCopy code
$filename(export-rapperse.txt,utf-16)<figure class="wp-block-table is-style-stripes"><table><tbody>$loop(%_filename_ext%)<tr><td>'['sc_embed_player fileurl="https://rapperse.com/wp-content/uploads/$replace(%albumartist%-%album%-%_filename_ext%,'(',,')',,&,, /,,'[',,']',, - ,-, ,-,'',,#,,:,,!,,*,,',',,$,,%,,",,'’',,?,,;,,/,,%,,+,,=,,--,-,)"']'</td><td>$replace(%track%,&,&)</td><td width="50%%">$meta_sep(artist,', ',<a href="https://rapperse.com/rapper/$lower($replace(%artist%,&,&, ,-,',',))/">$replace(%artist%,&,&)</a>)</td><td width="50%%">$replace(%title%,&,&)</td><td>$replace(%_length%,&,&)</td></tr>$loopend()</tbody></table></figure>
Could you please guide me on how to handle this situation using Mp3tag version 3.12, or suggest an alternative method for creating separate links for each artist when there are multiple artists in a metadata field?
Thank you.