Naromat is a library crate that converts text file from specific typesetting format to Shosetsuka ni Naro(https://syosetu.com/) format.
cargo install naromat
naromat -h
```rust use naromat::entities::chapter::Chapter;
let chapter = Chapter::new(" 我が輩は猫である。名前はまだない。 どこで[生まれた:.]のかとんと[見当:けんとう]がつかぬ。 ");
let formattedstring = chapter.get(); asserteq!(formatted_string, " 我が輩は猫である。名前はまだない。 どこで|生まれた《・・・・》のかとんと|見当《けんとう》がつかぬ。");
use naromat::entities::file::TextFile;
let text = TextFile::new("./path/to/source/file").unwrap(); text.formatandsave("./path/to/save.txt");
```