Peaksol's static site generator
Go to file
Peaksol 9f40ce1762 frontmatter failsafe 2023-09-05 17:19:32 +08:00
example Huge update 2023-07-11 01:43:09 +08:00
lib better front-matter handling 2023-07-07 01:47:18 +08:00
COPYING better front-matter handling 2023-07-07 01:47:18 +08:00
README.md frontmatter failsafe 2023-09-05 17:19:32 +08:00
peaksol-org-ssg.php frontmatter failsafe 2023-09-05 17:19:32 +08:00

README.md

Peaksol's Static Site Generator

peaksol-org-ssg, regardless of the name, is a general-purpose static site generator. This program was originally designed solely for peaksol.org, but is now capable of powering your own personal site or website for your free software project.

How to use

Before you get started, make sure you have installed php and php_mbstring. You'll also need php-xml if your markdown files contain HTML tags.

This programs runs smoothly on PHP 8. Other versions are untested.

You can check the example/ directory for an example project that follows the following steps to create a static website.

1. Prepare your source files

Create a directory to store the source files (markdown files, images, etc.) for your website.

Anything not ending with .md will be copied into the target directory verbatim.

For each .md file, insert the following lines (i.e. the front-matter section) at the start of the file:

---
{
    "title": "Title of this page",
    "template": "template_to_use.php"
}
---

While a front-matter section is NOT a requirement from the SSG, you probably want to add one to specify something. When:

  • template is not specified, default.php in the template directory will be used;
  • title is not specified, the first level-1 heading (e.g. # Foobar) will be used; and if that doesn't exist either, file name will be a fallback.

A template can require more to be specified in the front-matter section. We'll explain that later.

2. Prepare a template

Create a directory to store the template files for you website. (Don't create one in the directory for source files!)

To create a new template, create a file named whatever_you_want.php, or simply default.php if you don't want to specify template name in each markdown file. Write in it whatever HTML code you'll need for a page. The following PHP variables are available:

  • $frontmatter: used to access what you've specified in the front-matter section of a markdown file, e.g. $frontmatter['title'], $frontmatter['date'];
  • $src: raw text of the markdown file;
  • $markdown: $src but without the front-matter section;
  • $parsed: parsed HTML code of the markdown file;
  • $dir_relative: relative path to the directory where the file is located;
  • $basename: file name;
  • and more that can be found in the source code.

In case you're not familiar with PHP, you can use <?= $var_name ?> to export a variable in your template.

For assets such as CSS files, place them into the assets directory, and they'll be copied to the output directory verbatim.

3. Generate the site

When everything is ready, run the following command to generate the site:

php peaksol-org-ssg.php \
    --template "/path/to/template_dir" \
    --input "/path/to/source_dir" \
    --output "/path/to/output_dir" \
    --clean

Please note that the --clean option will remove all files in /path/to/output_dir! Make sure you set the path correctly before you execute the command. If you don't want to clean the output directory before generation, just remove that option.

You can save these lines into a .sh file and later run it as a script.

License

This program is licensed under the GNU Affero General Public License, version 3.