ar-reshaper 1.5.0

A no-std crate to reconstruct Arabic, turkish and persian sentences to be used in applications that don't support Arabic script.
Documentation
1
2
3
4
5
6
7
use ar_reshaper::prelude::*;

fn main() {
    let reshaper = ReshaperConfig::new(Language::ArabicV2, LigaturesFlags::none()).to_reshaper();

    println!("{}", reshaper.reshape("سهل"));
}