Fix capitalization and apostrophes for ’Cage

This commit is contained in:
Domenic Denicola 2020-11-29 16:13:59 -05:00
commit 32817eb255
2 changed files with 3 additions and 4 deletions

View file

@ -298,6 +298,9 @@ function fixTruncatedWords(xml) {
// Short for "Anelace"
xml = xml.replace(/[][Ll]ace(?![a-z])/g, "Lace");
// Short for "Birdcage"
xml = xml.replace(/[][Cc]age(?![a-z])/g, "Cage");
return xml;
}

View file

@ -4275,10 +4275,6 @@
"before": "and His flesh began",
"after": "and his flesh began"
},
{
"before": "the cage",
"after": "the cage"
},
{
"before": "background of his mind</p>",
"after": "background of his mind.</p>"