Roxy, a command line static site generator
Go to file
2024-02-11 06:45:28 -05:00
src Add new filter; fixing context (as always xwx) 2024-02-11 06:45:28 -05:00
.gitignore init 2024-01-17 04:26:21 -05:00
Cargo.lock remove unnecessary library 2024-02-11 00:29:14 -05:00
Cargo.toml remove unnecessary library 2024-02-11 00:29:14 -05:00
README.md borrow checker doesnt let me have fun 2024-02-05 05:35:12 -05:00
rust-toolchain.toml i dont remember 2024-01-24 02:13:16 -05:00

Roxy

this is a wip overhaul for my static site generator, roxy. it technically works but it's very rough around the edges.

Usage

roxy [INPUT] [OUTPUT]

Roxy will read each file from INPUT for valid files. It will look for toml for data and md, html, or tera for layout an content files. toml data is loaded into an object and given to content files (which can be used as variables with Tera placeholders). The content files will be processed first as Markdown, then as a Tera template. The output of this process will write to OUTPUT, preserving the original path (relative to INPUT).

Configuration

Currently, Roxy only has two configuration keys

# config.toml
[syntect]
theme = "base16-ocean.dark" # the name of the theme for syntax highlighting
themes = ["./themes/base16-ocean.dark.tmTheme"]