Fix missing space in many instances of "shoulder blade"

This commit is contained in:
Domenic Denicola 2020-10-22 22:21:54 -04:00
commit 5cbbd8a6fb

View file

@ -345,6 +345,9 @@ function getBodyXML(chapter, contentEl) {
xml = xml.replace(/(\b)tv(\b)/g, "$1TV$2");
xml = xml.replace(/T\.V\./g, "TV");
// This is commonly misspelled.
xml = xml.replace(/([Ss])houlderblade/g, "$1houlder blade");
// There's no reason why these should be capitalized. (Note that they never appear at the beginning of any sentences.)
xml = xml.replace(/Halberd/g, "halberd");
xml = xml.replace(/Loft/g, "loft");