R4d is a text oriented macro prosessor made with rust.
R4d is in very early stage, so there might be lots of undetected bugs. Fast implementaiton was my priorites, thus optimization has had a least consideration for the time.
When it gets 1.0?
R4d's will reach 1.0 only when followings are resolved.
As a binary
```bash
rad inputfile.txt -o outfile.txt
rad input_file.txt
printf '...text...' | rad -o out_file.txt
printf '...text...' | rad
-e
rad test -f frozen.r4f
rad test -m frozen.r4f ```
Type -h
or --help
to see full options.
As a library
Cargo.toml ```toml [dependencies] rad = { version = "0.5", features = ["full"] }
**rust file**
rust
use rad::RadError;
use rad::Processor
// Every option is not mendatory let processor = Processor::new() .purge(true) .greedy(true) .silent(true) .strict(true) .customrules(Some(vec![pathbuf])) // Read from frozen rule files .writetofile(Some(pathbuf))? // default is stdout .errortofile(Some(pathbuf))? // default is stderr .unixnew_line(true) // use unix new line for formatting // Debugging options .debug(true) // Turn on debug mode .log(true) // Use logging to terminal .interactive(true) // Use interactive mode .build(); // Create unreferenced instance
processor.fromstring(r#"$define(test=Test)"#); processor.fromstdin(); processor.fromfile(&path); processor.freezetofile(&path); // Create frozen file processor.printresult(); // Print out warning and errors count ```
R4d aims to be a modern alternative to m4 processor, which means