GUI TextBlock auto warpping on CJK characters

Is it possible to add a force-mode on TextWrapping, to wrap without finding space characters?
Normally Chinese text paragraphs don’t need space characters, and it’s same to Japanese and Korean texts

Adding @carolhmj our GUI expert !!!

I’m not sure if this would completely solve your case but you can specify other characters to break lines with a custom wordSplittingFunction: Auto text wrapping issue on CJK characters | Babylon.js Playground (babylonjs.com)

Otherwise we could also wrap on length, like, wrap every 2, 3,… or N characters (that might have some complications because one character might contain multiple codepoints and etc, but we could do a general solution that works most of the times I think)