Hyphenate "clear-cut"

This commit is contained in:
Domenic Denicola 2020-12-19 14:59:08 -05:00
commit 9fc36b813f

View file

@ -629,6 +629,7 @@ function fixHyphens(xml) {
xml = xml.replace(/well armed/g, "well-armed");
xml = xml.replace(/able bodied/g, "able-bodied");
xml = xml.replace(/level headed/g, "level-headed");
xml = xml.replace(/clear cut/g, "clear-cut");
xml = xml.replace(/self (conscious|esteem|loathing|harm)/g, "self-$1");
xml = xml.replace(/([Oo]ne|[Tt]wo|[Tt]hree|[Ff]our|[Ff]ourth) dimensional/g, "$1-dimensional");
xml = xml.replace(/(?<=\b)one on one(?=\b)/g, "one-on-one");