Crates.io | kobold-ssg |
lib.rs | kobold-ssg |
version | 0.2.3 |
source | src |
created_at | 2022-02-06 21:04:22.121918 |
updated_at | 2023-08-04 22:11:40.664297 |
description | A static site generator with a friendly CLI |
homepage | https://crates.io/crates/kobold-ssg |
repository | https://gitlab.com/eguiraud/kobold-ssg |
max_upload_size | |
id | 528034 |
size | 137,855 |
Kobold is a static site generator with a friendly CLI.
Usage: kobold <COMMAND>
Commands:
init Create a new Kobold project in the specified directory
build Generate website from the Kobold project at the specified directory
help Print this message or the help of the given subcommand(s)
Options:
-h, --help Print help
-V, --version Print version
You can install Kobold via Cargo:
cargo install kobold-ssg
As long as Cargo's bin directory ($HOME/.cargo/bin
by default) is in your PATH
, you are set.
Alternatively you can clone the repository and then use:
cargo run --release -- [kobold commands, options]
Create a new Kobold project:
kobold init koboldsite.com
This creates the koboldsite.com/
directory and initializes it as a git repository with the directory structure that Kobold requires:
koboldsite.com/
├── content/
│ └── index.md
├── layouts/
│ └── default.html
├── macros/
│ └── ...
└── css/
└── ...
The project can contain more sub-directories with other names, but sub-directories site/
and site.old/
are reserved for usage by Kobold.
If you have used any other static site generator, you can probably guess how Kobold works based on this directory structure.
The index.md
file is the main page of the website, and starts with the following contents:
---
title: Home page
---
# Hello Kobold!
You can already generate a website:
kobold build koboldsite.com
That command creates a site/
sub-directory in the koboldsite.com/
directory with the generated website.
You can visit the website with your favorite web browser:
firefox koboldsite.com/site/index.html
or start an HTTP server, e.g.:
cd koboldsite.com/site && python -m http.server
You can then work on your website by adding more files under content/
.
Files with the .md
extension are processed to:
default.html
)All other files under content/
are copied into site/
as they are, with the same directory structure. The css/
directory is also copied into site/
as-is.
Custom page layouts can be added to the layouts
directory: they are Tera templates and they must have the .html
extension.
Placeholders such as {{title}}
and {{body}}
in the layouts are substituted with appropriate values during the website generation (see context variables).
To select a custom page layout add layout: filename
to the page's frontmatter (omitting the .html
extension).
Markdown content pages (that is, text files with the .md
extension in the content/
directory) may start with a YAML frontmatter.
This is a snippet of YAML enclosed between two lines that only contain ---
.
If present, it contains metadata that will inform the page processing.
The following keys in the frontmatter have a special meaning for Kobold:
title
: the page titlelayout
: the layout to use for this page. In order to use layout blog_post.html
, use layout: blog_post
(omitting the extension)tags
: an array of tags that will be attached to this page, e.g. [c++, war-stories]
Any other keys will be made available as context variables during site generation.
Tera macros can be used to automate the generation of page content.
In a Kobold project they are files that live in the macros/
directory (no sub-directories are allowed) and
can have any extension (e.g. .md
, .html
or .tera
).
Macros are the only Tera feature that can be used in content pages.
They are automatically made available under the macros
namespace (no need to {% import %}
them) and can be invoked as:
{{ macros::macroname(parameter="value") }}
Remember that Tera macros require the usage of keyword arguments. The macro invocation is replaced by the output of its evaluation before the Markdown is converted to HTML.
Differently from Markdown content pages, layouts are full-blown Tera templates, so macros work as they usually do in Tera (and they are not automagically imported):
{% import '../macros/mymacrofile.html' as somemacros %}
{{ somemacros::macroname(parameter="value") }}
For both layouts and content pages, context variables can be passed to macros as parameters.
The following variables are made available to the templates in layouts/
as well as when
evaluating macros in Markdown content pages:
title
: the page title as stated in the YAML frontmatter
path
: the page URL relative to the website root /
tags
: the tags attached to the page
data
: a map containing any extra variables that were set in the page's frontmatter
pages
: an array of Page{title, path, tags, layout, data}
that contains the corresponding info for all the content pages of the site
body
(only in layouts, not in content pages): the page body, with macros already evaluated and converted to HTML
human-friendly error messages that are prescriptive rather than descriptive whenever possible
support for programmatic generation of page content via Tera macros
automatic syntax highlighting for code blocks
nice autocompletion for the fish shell
make the body of pages selected via the needs
key in the frontmatter available as part of the Tera context
I wanted a personal website and I wanted to practice my Rust.
Kobold was written from scratch, but it has many similarities to the more mature
Zola and Cobalt.
Kobold lacks many of their features, but in exchange it tries to be so easy to use that you
can start working on your website without reading any docs, just playing with the kobold
command.
I also appreciate Hugo's focus on speed and its no-nonsense workflow, and shortcodes make a lot of sense so Kobold's macros try to replicate some of that usefulness.
Not a static site generator per se, but Sylvain Kerkour's Building a static site generator in 100 lines of Rust was a great resource to get me started.
If you happen to try out Kobold, any feedback is more than welcome.
Contributions in the form of issues or patches are even more appreciated.