This commit is contained in:
Jesse Bannon 2024-09-26 18:40:37 -07:00
parent 72d42a20c4
commit ae73c20859

View file

@ -26,9 +26,11 @@ presets:
overrides: overrides:
# Captures 'Some - Song' from 'Emily Hopkins - Some - Song' # Captures 'Some - Song' from 'Emily Hopkins - Some - Song'
captured_track_title: >- captured_track_title: >-
%regex_capture_many( {
title, %regex_capture_many(
[ ".*? - (.*)" ], title,
[ title ] [ ".*? - (.*)" ],
) [ title ]
)
}
track_title: "{%array_at(captured_track_title, 1)}" track_title: "{%array_at(captured_track_title, 1)}"