Fix capitalization and apostrophes for ’Lace

This commit is contained in:
Domenic Denicola 2020-11-23 16:53:07 -05:00
commit c9d51787e2

View file

@ -289,6 +289,9 @@ function fixTruncatedWords(xml) {
// Short for "Contender"
xml = xml.replace(/[][Tt]end(?![a-z])/g, "Tend");
// Short for "Anelace"
xml = xml.replace(/[][Ll]ace(?![a-z])/g, "Lace");
return xml;
}