Fix capitalization and apostrophes for ’Cage
This commit is contained in:
parent
c128712bb4
commit
32817eb255
2 changed files with 3 additions and 4 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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>"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue