R4d is a text oriented macro prosessor made with rust.
Setvar data races vulnerability is known issue at the time but for current state, it doesn't affect r4d since r4d doesn't utillize multi threading in processing. Every time,date call and env_set calls are sequential and doensn't overlap.
If you're using an operating system that doesn't utilize libc, then its fine.
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)
This is some important table automatically formatted according to environment variable.
$table($env(TABLE_FORM),*H1,H2,H3 a,b,c d,e,f*)
I'm out of idea and I need some texts, $lipsum(15) ``` Processed texts
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 2021-09-26 21:36:59.
This is some important table automatically formatted according to environment variable.
|H1|H2|H3| |-|-|-| |a|b|c| |d|e|f|
I'm out of idea and I need some texts, Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore. ```
You can download binaries in release page
However I recommend using cargo install
until I prepare a proper CD
pipeline.
e.g.
```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() .greedy(true) .writetofile(Some(PathBuf::from("cache.txt")))? .build();
processor.fromfile(Path::new("input.txt"))?; processor.printresult()?; ```
0.11 has breaking changes
Though there were several minor breaking changes, this version has several breaking changes over command line arguments, how processing works by default, how macros worrk by default.
Changes are illustrated in release page.
Windows path bug was fixed in 0.11.5
Because windows also accept Slash (/)
as path delimiter, I didn't find
any problem until I found windows's default path delimiter is Reverse slash
(\)
. This was fixed in 0.11.5
R4d aims to be a modern alternative to m4 processor, which means