Quote:
Originally Posted by Tanjamuse
Can I add a setting under covers, if there are more than 3 fandoms, to use a specific cover?
|
You can specify the category. Like for example if you want 'Cover01' for a fandoms crossover 'Hawaii Five-O', 'NCIS Los Angeles' and 'NCIS' make your line like this:
Quote:
${category} => (?=.*\b.*Hawaii.*\b)(?=.*\b.*Los Angeles.*\b)(?=.*\bNCIS\b).* => Cover01
|
With this regex it doesn't matter what fandom stands first, second or third BUT every fandom in there has to be mentioned. And the .* before and after helps if a fandom is written with something more like 'Hawaii(TV)'.
But you have to put this line before any cover for only one of these fandoms.
Quote:
${category} => (?=.*\b.*Hawaii.*\b)(?=.*\b.*Los Angeles.*\b)(?=.*\bNCIS\b).* => Cover01
${category} => (?=.*\b.*Hawaii.*\b).* => CoverHawaii
|
and so on.
MiniMouse