#static-site-generator #markdown #content #static-website #configuration #template #themes

app quickstatic

First static site generator build for Djot. Optimized for the actual content and not the themes or bells and wistle of the Static site generator

8 releases

new 0.1.11 May 16, 2024
0.1.10 Mar 25, 2024

#17 in Template engine

Download history 40/week @ 2024-03-07 544/week @ 2024-03-14 326/week @ 2024-03-21 35/week @ 2024-03-28 2/week @ 2024-04-04

700 downloads per month

MIT/Apache

39KB
791 lines

QuickStatic 🚀🦀🔥

The first and fast static site generator built in Rust specifically for Djot (a more powerful but strict markdown dialect).


Table of Contents


Priorities

A QuickStatic site should show the content first, and hide themes or configuration details. We spend more time writing content than editing website templates and configs. We should lean into features in markdown, such as directives and custom attributes, for adding features and components to markdown, instead of supporting MDX. QuickStatic generates static websites and focuses on doing that in a flexible and fast way. This project prioritizes the following tenets:

  • Simplicity.
  • Stability (few features—and should not change very much).
  • Content first.
  • Super flexible markdown, via extended markdown specifications.
  • Never support MDX (React in markdown). Instead, depend on markdown directives and the markdown attributes extended spec.
  • No asset management or SCSS or LESS or any other automated transpiler support.
  • Build on top of Shopify liquid templates.
  • Prioritize productivity.

Installation

QuickStatic can be installed using the cargo command below (if you don't have Rust Cargo installed already, you should read the Cargo Installation Guide).

cargo install quickstatic

Basic Usage

  • Quickstatic themes should be under _quickstatic/themes/ directory.
  • Quickstatic public or build directory is quickstatic/public.
  • Everything in the root directory gets copied into the output directory in that order, while markdown files are compiled into HTML files.
  • Anything with a .liquid extension is executed as a template and the .liquid extension is striped. For example, sitemap.xml.liquid would be evaluated and become sitemap.xml.

To build the site, kindly run the command below:

quickstatic build

To watch for changes and continuously rebuild the site, kindly run the command below:

quickstatic serve

Themes and Templates

QuickStatic themes can be written using the Shopify liquid templating language. To use any given template file for a particular page, simply reference the template file from the frontmatter. For example:

---
title: Page title
layout: themeName/blog/index.liquid
---

Page Content.

This is flexible and allows you to reference multiple themes from one QuickStatic site.

[!TIP]

All themes exist in the _quickstatic/themes/ folder and your QuickStatic site comes with a default theme named default.

Repo Activity

GitHub Repo Statistics

Contributors Guide

  1. Fork the repository (learn how to do this).

  2. Clone the forked repository like so:

git clone https://github.com/<your username>/quickstatic.git && cd quickstatic
  1. Install the required dependencies and configurations.

  2. Create a new branch like so:

git checkout -b <new-branch-name>
  1. Make your change(s), add tests, and ensure the tests still pass.

  2. Push your commit(s) to your fork and create a pull request (learn how to do this).

  3. Well done! Someone will attend to your pull request, provide some feedback, or merge it.

License

This repository is published under the MIT license.

Dependencies

~40–56MB
~1M SLoC