static String dehyphenate(String text) => text.replaceAll(RegExp(r"(\w)-\n(\w)"), r"$1$2").replaceAll("\n", " ");