diff --git a/lib/convert-worker.js b/lib/convert-worker.js index 9aa7cbd..59094bc 100644 --- a/lib/convert-worker.js +++ b/lib/convert-worker.js @@ -562,6 +562,9 @@ function standardizeSpellings(xml) { // "gray" is the majority spelling, except for "greyhound" xml = xml.replace(/(G|g)rey(?!hound)/g, "$1ray"); + // 12 instances of "Dragon-craft", 12 instances of "Dragon craft", 1 instance of "dragon craft" + xml = xml.replace(/[Dd]ragon[ -](craft|mech)/g, "Dragon-$1"); + return xml; }