R4d is a text oriented macro prosessor made with rust.
Is it stable?
I'm currently dog fooding for bug detections, and there might be some undetected bugs. However it doesn't mean that the syntax will change in the future without breaking release. (At least until 2.0)
The reason r4d is not yet in 1.0 is that I want to make sure that followings are solved.
Therefore it is quite stable, in terms of non-breakable syntax(interface), but there will be bug fixes and non breaking changes.
You can download binaries in release page
If your platform is not listed, mostly MacOS, directly install from cargo registry.
```bash
cargo install r4d --features binary
cargo install r4d --features binary,color ```
Binary ```
rad input_file.txt
printf '...text...' | rad -o out_file.txt ```
Library ```rust use rad::RadError; use rad::Processor;
let processor = Processor::new() .purge(true) .greedy(true) .writetofile(Some(PathBuf::from("cache.txt")))? .build();
processor.fromfile(Path::new("input.txt"))?; processor.printresult()?; ```
R4d aims to be a modern alternative to m4 processor, which means