R4d (Rad)

R4d is a text oriented macro prosessor aims to be an alternative to m4 macro processor.

Note

Because crates.io's readme is tied to version. There might be undocumented readme changes. Please use github for latest information.

Demo

Raw texts ```text $define(author=Simon Creek)

$define(title=R4d demo)

title : $title()

author : $author()

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*)

$wrap(40,$lipsum(15)) ``` Processed texts

```

title : R4d demo

author : Simon Creek

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-12-29 03:03:41.

This is some important table automatically formatted according to environment variable.

|H1|H2|H3| |-|-|-| |a|b|c| |d|e|f|

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore. ```

Install

I recommend using cargo install until I prepare a proper CD pipeline.

e.g.

```bash

Binary features is mandatory or else it is not an executable

cargo install r4d --features binary --locked

If you need color prompt, then use features "color"

cargo install r4d --features binary,color --locked

Refer lib.rs or usage section for detailed feature usage

```

But you can download some binaries in release page

Simple usage

Binary ```

Read from file and print to stdout

rad input_file.txt

Read from standard input and print to file

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")))?;

processor.fromfile(Path::new("input.txt"))?; processor.printresult()?; ```

Usage

Detailed usage

Syntax

Macro syntax

Built-in macros

Macros

Macro types

Types

How to debug

Debug

Goal

R4d aims to be a modern alternative to m4 processor, which means

CVE related issue

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.