add_space 0.1.20

Automated typesetting tool that adds spaces between Chinese and English characters to enhance readability. / 自动排版工具,在中文和英文字符之间添加空格以增强可读性。
Documentation
1
2
3
4
5
6
use add_space::add_space;

fn main() {
  println!("'{}'", add_space("你好1"));
  println!("'{}'", add_space("1中文"));
}