We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fd26a22 + 7289a3f commit c241d38Copy full SHA for c241d38
training/stringrenderer.cpp
@@ -52,7 +52,7 @@ static const int kDefaultOutputResolution = 300;
52
// Word joiner (U+2060) inserted after letters in ngram mode, as per
53
// recommendation in http://unicode.org/reports/tr14/ to avoid line-breaks at
54
// hyphens and other non-alpha characters.
55
-static const char* kWordJoinerUTF8 = "\u2060";
+static const char* kWordJoinerUTF8 = "\xE2\x81\xA0"; //u8"\u2060";
56
static const char32 kWordJoiner = 0x2060;
57
58
static bool IsCombiner(int ch) {
0 commit comments