diff --git a/lib/convert-worker.js b/lib/convert-worker.js index 5873150..4c8e5c9 100644 --- a/lib/convert-worker.js +++ b/lib/convert-worker.js @@ -365,6 +365,9 @@ function standardizeNames(xml) { // 13 instances of Elman to 1 of Elmann xml = xml.replace(/Elmann/g, "Elman"); + // Thousands of instances of Tattletale to 4 instances of Tatteltale + xml = xml.replace(/Tatteltale/g, "Tattletale"); + return xml; }