R4d is a text oriented macro prosessor aims to be an alternative to m4 macro processor.
Because crates.io's readme is tied to version. There might be undocumented readme changes. Please use github for latest information.
Raw texts ```text $define(author=Simon Creek)
title : $title()
My name is $author() and I made r4d to make macros can be used within various forms of texts. This article was written in $date() $time().
$ifdef(test, This should be only printed when I'm testing not in release)$dnl()
This is some important table automatically formatted according to environment variable.
$regcsv(addr,$include(addr.csv))$dnl()
$static( queried, $query( SELECT id,firstname,address FROM addr where firstname = John ) )$dnl()
% Comments are disabled by default for better compatibility % TABLEFORM == github $table($env(TABLEFORM),$queried())
$wrap(40,$lipsum(15))
Evaluation : $prec($eval( $num(0.1second) + $num(0.2sekunde)),2) Evaluation : $evalk( 1 + 2 ) ``` Processed texts
Ran with TABLE_FORM=github rad file_name.md -a env+fin --comment
title : R4d demo
My name is Simon Creek and I made r4d to make macros can be used within various forms of texts. This article was written in 2022-01-18 16:38:07.
This is some important table automatically formatted according to environment variable.
|id|first_name|address| |-|-|-| |1|John|111-2222| |2|John|222-3333|
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore.
Evaluation : 0.30 Evaluation : 1 + 2 = 3 ```
Install rust related tools for build
I recommend using cargo install
until I prepare a proper CD
pipeline.
Currently version 3.0 is preparing for release and can be downloaded with specific version flag.
cargo install r4d --features binary,color --locked --version 3.0.0-rc.2
e.g.
```bash
cargo install r4d --features binary --locked
cargo install r4d --features binary,color --locked
cargo install r4d --features basic --locked
```
Binary
There are two binaries each rad and rado. Rad is a main processor and rado is a open+edit binary.
```
rad input_file.txt
printf '...text...' | rad -o out_file.txt
rado edit file_name.txt
rado read file_name.txt
rado env ```
Library ```rust use r4d::RadError; use r4d::Processor;
let processor = Processor::new() .writetofile(Some(PathBuf::from("cache.txt")))?;
processor.processfile(Path::new("input.txt"))?; processor.printresult()?; ```
R4d aims to be a modern alternative to m4 processor, which means