Standardize on "Dragon-craft" and "Dragon-mech"
This commit is contained in:
parent
3284c04f8b
commit
06c7b3adf2
1 changed files with 3 additions and 0 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue