Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions common/known-removable-phrases.js
Original file line number Diff line number Diff line change
Expand Up @@ -1076,6 +1076,7 @@ const knownRemovablePhrases = [
"3rd annual screening",
"4th annual screening",
"5th annual screening",
"80 Years of Martin and Lewis:",
"aka daughters of darkness",
"aka The Devil's Bride",
"aka Dracula's Dog",
Expand Down
1 change: 1 addition & 0 deletions common/normalize-title.js
Original file line number Diff line number Diff line change
Expand Up @@ -731,6 +731,7 @@ function normalizeTitle(title, options) {
["The Life + Legacy", "The Life and Legacy"],
[" - Oggi", ": Oggi"],
[" x metropolis", " metropolis"],
["Nick Drake: A Skin Too Few", "A Skin Too Few: The Days of Nick Drake"],
// Variant families collapsed from known-removable-phrases.js
// Each pattern covers multiple near-identical string entries that shared a common structure
[/dog[- ]?friendly(?:\s+screening)?[:\s]*/i, ""],
Expand Down
40 changes: 40 additions & 0 deletions common/tests/test-titles.json
Original file line number Diff line number Diff line change
Expand Up @@ -72466,5 +72466,45 @@
{
"input": "Hen Cinema Hangout",
"output": "hen cinema hangout"
},
{
"input": "80 Years of Martin and Lewis: The Caddy (1953)",
"output": "the caddy (1953)"
},
{
"input": "Nick Drake: A Skin Too Few ",
"output": "a skin too few the days of nick drake"
},
{
"input": "Do Not Expect Too Much from the End of the World",
"output": "do not expect too much from the end of the world"
},
{
"input": "Shakespeare",
"output": "shakespeare"
},
{
"input": "UK PREMIERE Tycoon",
"output": "tycoon"
},
{
"input": "Anthony Chen - Short films + Q&A",
"output": "anthony chen"
},
{
"input": "Music Video Preservation Society with Vaughan Arnell",
"output": "music video preservation society with vaughan arnell"
},
{
"input": "Lesbian Aliens - Double Bill",
"output": "lesbian aliens"
},
{
"input": "KIKI",
"output": "kiki"
},
{
"input": "QUICKSILVER presented by Jellied Reels",
"output": "quicksilver"
}
]