custom_config/
custom_config.rs

1use ar_reshaper::prelude::*;
2
3fn main() {
4    let reshaper = ReshaperConfig::new(Language::ArabicV2, LigaturesFlags::none()).to_reshaper();
5
6    println!("{}", reshaper.reshape("سهل"));
7}