Standardize on "Crock o’ Shit"

This commit is contained in:
Domenic Denicola 2020-11-23 17:00:33 -05:00
commit af03064221

View file

@ -342,6 +342,9 @@ function standardizeNames(xml) {
// 25 instances of "Amias" to 3 of "Amais"
xml = xml.replace(/Amais/g, "Amias");
// Earlier chapters have a space; later ones do not. They're separate words, so side with the earlier chapters.
xml = xml.replace(/Crock o[]Shit/g, "Crock o Shit");
return xml;
}