11 unstable releases (3 breaking)

0.4.1 Mar 5, 2024
0.4.0 Dec 28, 2023
0.3.0 Nov 14, 2023
0.2.2 Nov 9, 2023
0.1.1 Jan 25, 2023

#128 in Template engine

Download history 12/week @ 2023-12-25 44/week @ 2024-02-19 12/week @ 2024-02-26 120/week @ 2024-03-04 25/week @ 2024-03-11 8/week @ 2024-03-18 2/week @ 2024-03-25 18/week @ 2024-04-01

61 downloads per month

Apache-2.0

115KB
3K SLoC

Eric's Blog Generator

Crates.io docs.rs

This is my very un-creatively named static site generator with an emphasis on blogging. EBG is primarily meant to power https://theincredibleholk.org. You're welcome to use it for your own site if you want, but at this point that's likely to be fairly labor-intensive. For example, EBG does not yet include any pre-defined themes so you would have to make one from scratch and the theme-making process is poorly documented.

EBG is inspired by Octopress and Jekyll, and perhaps even largely compatible because I developed EBG to do an in-place upgrade from my Octopress-powered blog. Over time it has begun to diverge somewhat in order to support my own desires, and will likely continue to diverge in the future.


lib.rs:

This crate provides the core functionality of Eric's Blog Generator.

It is primarily meant to be driven by the ebg binary, but in theory it can be used as a library if you try hard enough.

The site generator process goes through several phases:

  1. Indexing
  2. Rendering
  3. Generation

In a more traditional compiler, these phases correspond roughly to parsing, compilation, and linking.

The program is largely serial right now, but the hope is it can be pipelined and parallelized to be an exceptionally fast site generator.

Indexing

The indexing phase is responsible for reading the site's configuration and all the source files. The end result is a data structure that can be used to compute metadata about the site, links between pages, etc.

Rendering

The rendering phase is responsible for taking any markdown source pages and generating the HTML for them.

Generation

The final step is to write out all the rendered contents into the destination directory. Many files are copied directly, but this also generates HTML pages from the rendered markdown contents of the last phase.

Dependencies

~29–46MB
~743K SLoC