Remove soft hyphens

pull/194/merge
M66B 3 years ago
parent e12bd4dcc6
commit 4c73f8dcc4

@ -2763,6 +2763,9 @@ public class HtmlHelper {
continue;
}
// ­
text = text.replace("\u00ad", "");
// Fold white space
text = FOLD_WHITESPACE.matcher(text).replaceAll(" ");

Loading…
Cancel
Save