Add acappella to live/commentary cleaner patterns

This commit is contained in:
Broque Thomas 2026-04-11 13:56:56 -07:00
parent c461f0071d
commit 805f72c5fd

View file

@ -31,6 +31,9 @@ _CONTENT_PATTERNS = [
(r'\bspoken\s*word\b', 'spoken_word'),
(r'\bnarrat(?:ion|ed)\b', 'spoken_word'),
(r'\bintroduction\b', 'spoken_word'),
# Acappella
(r'\ba\s*cappella\b', 'acappella'),
(r'\bacappella\b', 'acappella'),
]