htoml

HTML page templates described with a toml config
Log | Files | Refs | README

commit d77f1048f3318d1195c7582b1b3f7962bd55c0f8
parent 5b4e0f24c4cf7acfb153f4da21138d764bdd5432
Author: Jackson G. Kaindume <seestem@merely.tech>
Date:   Wed, 10 Aug 2022 15:15:22 +0200

add usage instructions

Diffstat:
M.gitignore | 1+
MREADME.md | 9+++++++++
2 files changed, 10 insertions(+), 0 deletions(-)

diff --git a/.gitignore b/.gitignore @@ -1,2 +1,3 @@ *~ /target +/publish diff --git a/README.md b/README.md @@ -41,3 +41,12 @@ variant = "basic" # Links for the navigation links = [{url= "/", text= "Home"}, {url= "/about", text= "About"},] ``` + +## Usage + +To generate .html files from .toml files run the following command: + +``` bash +# This an example, use your own .toml files +$ htoml index.toml about.toml contact.toml +```