Standardize on "A.I." instead of "AI"
This commit is contained in:
parent
5310672cc2
commit
1328dfd8e3
1 changed files with 3 additions and 0 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue