diff --git a/lib/convert.js b/lib/convert.js index 4c94b6c..e1503cf 100644 --- a/lib/convert.js +++ b/lib/convert.js @@ -302,6 +302,9 @@ function getBodyXML(chapter, contentEl) { // Note that Ward contains much talk of "the clairvoyants", so we don't want to capitalize plurals. xml = xml.replace(/the clairvoyant([^s])/g, "the Clairvoyant$1"); + // ReSound's name is sometimes miscapitalized. The word is never used in a non-name context. + xml = xml.replace(/Resound/g, "ReSound"); + // This is sometimes missing its capitalization. xml = xml.replace(/the birdcage/g, "the Birdcage");