Logo of the Shokunin Static Site Generator

Shokunin Static Site Generator

A Fast and Flexible open-source static site generator (ssg) written in Rust πŸ¦€

Part of the Mini Functions family of libraries.

Banner of the Shokunin Static Site Generator

Made With Rust Crates.io Lib.rs Docs.rs License Codecov

β€’ Website β€’ Documentation β€’ Report Bug β€’ Request Feature β€’ Contributing Guidelines

divider

Overview πŸ“–

Shokunin Static Site Generator is a highly-optimized, Rust-based static site generator (ssg) that aims to provide an easy-to-use and powerful tool for building professional static websites and blogs.

The library extracts metadata and content to generate static HTML files from Markdown, YAML, JSON, and TOML. It also supports HTML themes and custom templates to help you create high quality websites with ease.

Features ✨

Shokunin Static Site Generator feature highlights include:

Table of Contents πŸ“š

Getting Started πŸš€

It takes just a few minutes to get up and running with Shokunin Static Site Generator.

Installation

To install Shokunin Static Site Generator, you need to have the Rust toolchain installed on your machine. You can install the Rust toolchain by following the instructions on the Rust website.

Once you have the Rust toolchain installed, you can install Shokunin Static Site Generator using the following command:

shell cargo install ssg

For simplicity, we have given Shokunin Static Site Generator a simple alias ssg which can stand for Shokunin Site Generator or Static Site Generator.

You can then run the help command to see the available options and commands:

shell ssg --help

Requirements

The minimum supported Rust toolchain version is currently Rust 1.72.0 or later (stable). It is recommended that you install the latest stable version of Rust.

Platform support

Shokunin Static Site Generator is supported and tested on the following platforms:

Tier 1 platforms

| | Operating System | Target | Description | | --- | --- | --- | --- | | βœ… | Linux | aarch64-unknown-linux-gnu | 64-bit Linux systems on ARM architecture | | βœ… | Linux | i686-unknown-linux-gnu | 32-bit Linux (kernel 3.2+, glibc 2.17+) | | βœ… | Linux | x8664-unknown-linux-gnu | 64-bit Linux (kernel 2.6.32+, glibc 2.11+) | | βœ… | macOS | x8664-apple-darwin | 64-bit macOS (10.7 Lion or later) | | βœ… | Windows | i686-pc-windows-gnu | 32-bit Windows (7 or later) | | βœ… | Windows | i686-pc-windows-msvc | 32-bit Windows (7 or later) | | βœ… | Windows | x8664-pc-windows-gnu | 64-bit Windows (7 or later) | | βœ… | Windows | x8664-pc-windows-msvc | 64-bit Windows (7 or later) |

Tier 2 platforms

| | Operating System | Target | Description | | --- | --- | --- | --- | | βœ… | Linux | aarch64-unknown-linux-musl | 64-bit Linux systems on ARM architecture | | βœ… | Linux | arm-unknown-linux-gnueabi | ARMv6 Linux (kernel 3.2, glibc 2.17) | | βœ… | Linux | arm-unknown-linux-gnueabihf | ARMv7 Linux, hardfloat (kernel 3.2, glibc 2.17) | | βœ… | Linux | armv7-unknown-linux-gnueabihf | ARMv7 Linux, hardfloat (kernel 3.2, glibc 2.17) | | ❌ | Linux | mips-unknown-linux-gnu | MIPS Linux (kernel 2.6.32+, glibc 2.11+) | | ❌ | Linux | mips64-unknown-linux-gnuabi64 | MIPS64 Linux (kernel 2.6.32+, glibc 2.11+) | | ❌ | Linux | mips64el-unknown-linux-gnuabi64 | MIPS64 Linux (kernel 2.6.32+, glibc 2.11+) | | ❌ | Linux | mipsel-unknown-linux-gnu | MIPS Linux (kernel 2.6.32+, glibc 2.11+) | | βœ… | macOS | aarch64-apple-darwin | 64-bit macOS (10.7 Lion or later) | | βœ… | Windows | aarch64-pc-windows-msvc | 64-bit Windows (7 or later) |

The GitHub Actions shows the platforms in which the Shokunin Static Site Generator library tests are run.

Documentation

ℹ️ Info: Please check out our website for more information. You can find our documentation on docs.rs, lib.rs and crates.io.

Usage πŸ“–

Command Line Interface (CLI)

The Shokunin Static Site Generator library runs in a Terminal window and can be used to generate a static website.

Here’s the first command you can enter in your Terminal window to run Shokunin Static Site Generator:

shell ssg --new=mysite --content=content --template=template --output=output --serve=public

or

shell ssg -n=mysite -c=content -t=template -o=output -s=public

This command will create a new website with the name mysite in the current directory. It will use the content directory to gather the website content and the template directory to generate the website files. It will serve the website directly from the mysite directory.

Arguments

In your project

To use the Shokunin Static Site Generator library in your project, add the following to your Cargo.toml file:

toml [dependencies] shokunin = "0.0.16"

Add the following to your main.rs file:

rust extern crate ssg; use ssg::*;

then you can use the Shokunin Static Site Generator functions in your application code.

Examples

To get started with Shokunin Static Site Generator, you can use the examples provided in the examples directory of the project.

To run the examples, clone the repository and run the following command in your terminal from the project root directory.

shell cargo run --example example

The command will generate a static website based on the configuration details in the examples directory.

```shell use ssg::compiler::compile; use std::path::Path;

fn main() -> Result<(), Box> { // Define the paths to the build, site, content and template directories. let buildpath = Path::new("examples/example.com/build"); let contentpath = Path::new("examples/example.com/content"); let sitepath = Path::new("examples/example.com/public"); let templatepath = Path::new("examples/example.com/template");

compile(build_path, content_path, site_path, template_path)?;

Ok(())

} ```

The main() function in this code compiles a website from the content directory, using the template directory to generate the website files. The compiled website is saved in the build directory and served directly from the example.com directory.

Args

Return value

The main() function returns a Result. If the compilation is successful, the Result will be Ok(()). If there is an error, the Result will be Err(e), where e is a Box.

Semantic Versioning Policy πŸš₯

For transparency into our release cycle and in striving to maintain backward compatibility, Shokunin Static Site Generator follows semantic versioning.

License πŸ“

The project is licensed under the terms of both the MIT license and the Apache License (Version 2.0).

Contribution 🀝

We welcome all people who want to contribute. Please see the contributing instructions for more information.

Contributions in any form (issues, pull requests, etc.) to this project must adhere to the Rust's Code of Conduct.

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Acknowledgements πŸ’™

A big thank you to all the awesome contributors of Shokunin for their help and support.

A special thank you goes to the Rust Reddit community for providing a lot of useful suggestions on how to improve this project.