Quote:
Originally Posted by Tanjamuse
I've made a cover for the stories which are both Buffy & Angel i Category/Fandom. How do I input that info in my personal.ini? I've tried the following:
Code:
${category} => Angel + Buffy:? [tT]he Vampire Slayer => AngelBuffyCover
But it doesn't seem to work.
|
That pattern literally matches: "Angel<one or more spaces> Buffy..."
You'll have read a bit about regular expressions and experiment and see what works. I'd start with something like:
Code:
${category} => (Angel.*Buffy:? [tT]he Vampire Slayer)|(Buffy:? [tT]he Vampire Slayer).*Angel) => AngelBuffyCover
This pattern should match: "Angel<anything>Buffy... or Buffy...<anything>Angel"