diff --git a/lib/convert-worker.js b/lib/convert-worker.js index 4fac1b9..b16399b 100644 --- a/lib/convert-worker.js +++ b/lib/convert-worker.js @@ -395,6 +395,9 @@ function fixPossessives(xml) { xml = xml.replace(/([^‘])Ms. Stillons’([^s])/g, "$1Ms. Stillons’s$2"); xml = xml.replace(/([^‘])Chuckles’([^s])/g, "$1Chuckles’s$2"); + // This one is not just missing the extra "s"; it's often misplaced. + xml = xml.replace(/Warden’s/g, "Wardens’"); + return xml; }