Go to file
octospacc 923e74954e Tweak pages list generation, add cover data-image attribute to links 2024-04-13 15:05:16 +02:00
App Tweak pages list generation, add cover data-image attribute to links 2024-04-13 15:05:16 +02:00
Sites Add Sites/Main; Upd. build scripts; Refactoring (Site.py); Some work on transclusions 2023-02-27 18:11:16 +01:00
Themes First addition of experimental HTML site search; Update to themes build scripts 2023-02-22 22:46:04 +01:00
.gitignore Some code restructuring, Update copyright year, Fix bug in PagesSearch.html 2023-02-23 00:11:49 +01:00
.gitlab-ci.yml Refactoring: Build.py/MakeSite(), and minor modules 2023-02-23 17:05:36 +01:00
README.md Handle lowercase extensions; Misc fixes 2023-03-14 15:21:27 +01:00

README.md

staticoso

staticoso (from Italian statico [static] + coso [thingy]) is an unpretentious static site generator.

I'm making this because I need a simple and kind-of-minimal program to serve me as a static site generator with (limited) mixed-CMS+Wiki features. Just the ones I need, of which some are unique, however.

This won't replace any of the big projects out there that do the same thing but, as all of my projects, I'm releasing it as free libre software, in the hope that someone would find it useful.
Also, this software is needed for someone to edit and compile my personal website sitoctt from its source. Being that site too released under a libre license that allows modifications, I have to also release the tools I use to build it, or really people will never be able to make the most out of it.

Everything is still kind of a WIP, and some bugs might appear across commits, but feel free to experiment with all of this stuff! If you really want to use this tool for your website, I suggest you don't do like I do in my build process, running always with the latest code commit; instead, either download a snapshot of the code and keep that, or always clone from a specific commit, until you have time when I do an update to check if your site actually builds correctly with the new version.

Usage

Documentation

Documentation can be found at octtspacc.gitlab.io/staticoso-docs.
Obviously, it's built with staticoso itself 😁. Its source repo can be found at gitlab.com/octtspacc/staticoso-docs.

Keep in mind that, currently, it's still very incomplete. Any help, from writing the documentation to creating a decent HTML+CSS template for its site, is more than welcome.

Dependencies

Optional dependencies

Needed for Pug input support:

Needed for Gemtext output support:

Getting a version

The recommended way to get staticoso is to choose a commit, (preferably the most recent as of you're reading this) and stick to that for workflows and automatic deployments. You can either fork the repository at a certain point and always clone from yours, clone from a specific commit of this repo, or download an archive of the commit in question (click the GitLab download icon after navigating to a commit, or try https://gitlab.com/octtspacc/staticoso/-/archive/<FullCommitHash>/staticoso-<FullCommitHash>.tar.bz2).

Once that's set-up, it will also be possible to download the latest version from the CI/CD, based on if that commit has or has not passed runtime tests.

All of this is because some crucial things might be changed from one commit to another, possibly causing your site build to fail. Always make sure you have some spare minutes at hand for checking that your site actually still builds, whenever you want to update your workflows to the bleeding edge.

Roadmap

Features

  • Page transclusions
  • Generation of simplified pages compliant with the HTML Journal standard
  • HTML feeds (pages with list of N most recent posts)
  • Lists of all pages in a site directory
  • Page redirects / Alt URLs (+ ActivityPub URL overrides)
  • Progress bars for the build process!
  • Multithreading
  • Differential building
  • Overriding internal HTML snippets for template-specific ones
  • Static syntax highlighing for code blocks in any page
  • File name used as a title for pages without one
  • Custom category names in header links
  • Choosing custom name for Blog and Uncategorized categories
  • Choosing to use a template for all pages in a folder/category
  • Configuration with both INI files and CLI arguments
  • Category-based feeds
  • Support for multi-language sites
  • The title attribute is added to images which only have alt (for desktop accessibility), or viceversa
  • Local (per-page) and global (per-site) macros
  • ActivityPub (Mastodon) support (Feed + embedded comments)
  • Polished Gemtext generation
  • Autodetection of pages and posts
  • Info for posts shown on their page
  • HTML and CSS minification for Pages and Assets
  • Full Open Graph support
  • Custom categories for posts
  • Custom static and dynamic page parts
  • Showing creation and modified date for posts
  • Generation of category pages (ex. page with list of blog posts)
  • Custom and automatic page sorting
  • SCSS compilation support for CSS templates
  • Pug support for base templates and page side parts
  • Hot-recompile (for website development)
  • TXT sitemap generation
  • Atom + RSS feed generation
  • Generation of global website menu as a tree or as a line
  • Generation of page (titles) menu as a tree
  • Auto-detection of titles in a page
  • HTML, TXT, Extended Markdown, and Pug supported as input page files

Meta

  • Preparing more themes, both original and ported
    • First the theme build system should be even more streamlined
  • Actually making the documentation useful
  • Presentation website for the project
    • With a devlog maybe?
  • Constructing something to make testing of staticoso work in a web browser (doable with WASM Python?)

Known issues (might need further investigation)

  • Bad HTML included in Markdown files can cause a build to fail entirely.
  • Despite differential building and multithreading, the program still needs some more optimizations.
  • Ordering pages in the global menu with external configuration flags (outside the pages' source) yields broken and unpredictable results.
  • If site is small, the graphic of percentage completion is bugged (appears shorter).
  • Markdown markup in headings (e.g. ## Title **text**) is not processed and will render literally (e.g. <h2>Title **text**</h2>)