From 89478db268a266273ef3579484341a725a31cc10 Mon Sep 17 00:00:00 2001 From: Vincent Prouillet Date: Wed, 7 Mar 2018 17:52:33 +0100 Subject: [PATCH] Add comparison between SSG --- README.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/README.md b/README.md index f83196b..4a5e707 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,26 @@ An opinionated static site generator written in Rust. Documentation is available on [its site](https://www.getgutenberg.io/documentation/getting-started/installation/) or in the `docs/content` folder of the repository. +## Comparisons with other static site generators + +| | Gutenberg | Cobalt | Hugo | Pelican | +|--------------------------|-----------|--------|------|---------| +| Single binary | ✔ | ✔ | ✔ | ✕ | +| Language | Rust | Rust | Go | Python | +| Syntax highlighting | ✔ | ✔ | ✔ | ✔ | +| Sass compilation | ✔ | ✔ | ✕ | ✔ | +| Assets co-location | ✔ | ✕ | ✔ | ✕ | +| i18n | ✕ | ✕ | ✔ | ✔ | +| Image processing | ✕ | ✕ | ✔ | ✔ | +| Search | ✕ | ✕ | ✕ | ✔ | +| Sane template engine | ✔ | ✔ | ✕✕✕ | ✔ | +| Themes | ✔ | ✕ | ✔ | ✔ | +| Shortcodes | ✔ | ✕ | ✔ | ✔ | +| Internal links | ✔ | ✕ | ✔ | ✔ | +| Table of contents | ✔ | ✕ | ✔ | ✔ | +| Automatic header anchors | ✔ | ✕ | ✔ | ✔ | + + ## Contributing As the documentation site is automatically built on commits to master, all development should happen on the `next` branch, unless it is fixing the current documentation.