Expand description
§arabic_reshaper
Reconstruct Arabic sentences to be used in applications that don’t support Arabic script.
arabic_reshape :
Reshape letters
use arabic_reshaper::arabic_reshape;
let salam = "سلام";
println!("{}",arabic_reshape(salam));
// سلام correctly rendred.More info:
Check the original python version.