special fixups for [a-s] quirks
This commit is contained in:
parent
3d1c5a0afe
commit
1aaa02e3a6
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user