Getting Started
This guide will help you install and use Kabra for the first time.
Prerequisites
You'll need to have Zig (version 0.16.0 or latest master) installed.
Building Kabra
Clone the repository and build the executable:
bash
zig build
This will produce the kabra binary in the zig-out/bin/ directory.
Basic Usage
Kabra is operated via the command line. Provide it with a source directory containing your .md files, and it will generate the corresponding .html files in your specified output directory.
bash
./zig-out/bin/kabra --src=docs/ --out=public/
To see all available options, check the Configuration page.