diff --git a/lib/convert-worker.js b/lib/convert-worker.js index 395cf0e..1f622c1 100644 --- a/lib/convert-worker.js +++ b/lib/convert-worker.js @@ -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; }