Hyphenate "dog-tired"

This commit is contained in:
Domenic Denicola 2020-12-25 16:03:23 -05:00
commit 06e43dcf16

View file

@ -641,6 +641,7 @@ function fixHyphens(xml) {
xml = xml.replace(/([Cc]lear) cut/g, "$1-cut");
xml = xml.replace(/([Vv]at) grown/g, "$1-grown");
xml = xml.replace(/([Ss]hell) shocked/g, "$1-shocked");
xml = xml.replace(/([Dd]og) tired/g, "$1-tired");
xml = xml.replace(/([Ss]elf) (conscious|esteem|loathing|harm|destruct|preservation)/g, "$1-$2");
xml = xml.replace(/([Oo]ne|[Tt]wo|[Tt]hree|[Ff]our|[Ff]ourth) dimensional/g, "$1-dimensional");
xml = xml.replace(/(?<=\b)([Oo]ne) on one(?=\b)/g, "$1-on-one");