From 70e1ff0281dd87d7fcd823982b48cd0eb1c6ddcc Mon Sep 17 00:00:00 2001 From: Domenic Denicola Date: Mon, 23 Nov 2020 19:35:48 -0500 Subject: [PATCH] Always hyphenate self-conscious and derivatives --- lib/convert-worker.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/convert-worker.js b/lib/convert-worker.js index dd91449..0ecad93 100644 --- a/lib/convert-worker.js +++ b/lib/convert-worker.js @@ -571,6 +571,7 @@ function fixHyphens(xml) { xml = xml.replace(/creepy crawl/g, "creepy-crawl"); xml = xml.replace(/well armed/g, "well-armed"); xml = xml.replace(/able bodied/g, "able-bodied"); + xml = xml.replace(/self conscious/g, "self-conscious"); // This is usually correct but sometimes wrong. xml = xml.replace(/neo /g, "neo-");