special fixups for [a-s] quirks

This commit is contained in:
mappu 2018-09-30 19:22:13 +13:00
parent 3d1c5a0afe
commit 1aaa02e3a6
1 changed files with 5 additions and 0 deletions

View File

@ -85,6 +85,11 @@ function fixup($input) {
$tmp = preg_replace('~([^p])v2\b~i', '\1 [v2] ', $tmp); // They could be part of the episode number - pull them out - BUT don't pull out "PV2"
$tmp = preg_replace('~([^p])v3\b~i', '\1 [v3] ', $tmp);
$tmp = preg_replace('~([^p])v4\b~i', '\1 [v4] ', $tmp);
if (strpos($tmp, '[a-s]') !== false) {
// This sub group puts a team member username in the filename
$tmp = preg_replace('~\\b(rs2|pball)\\b~', '[\1]', $tmp);
}
// Remove nesting
$drop_nested_tags = function($tmp) {