When using Unicode.Transform.LatinAscii.transform/1 to transform strings that contain "non-breaking space" characters (e.g. ), the non-breaking spaces are being truncated:
iex> Unicode.Transform.LatinAscii.transform("There and Back Again")
"There andBack Again"
Is this intentional behavior, or is this something that should be handled differently by this function? (I would have assumed that these characters would be converted to a regular space character.)
Thanks