Standardize on "A.I." instead of "AI"

This commit is contained in:
Domenic Denicola 2020-11-29 16:01:00 -05:00
commit 1328dfd8e3

View file

@ -613,6 +613,9 @@ function standardizeSpellings(xml) {
// 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");
// 88 instances of "A.I." to four of "AI"
xml = xml.replace(/AI(!?\b)/g, "A.I.");
return xml;
}