Ben Chuanlong Du's Blog

It is never too late to learn.

Static Site Generators

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

zola

Zola is a fast static site generator in a single binary with everything built-in.

mdbook

next.js

next export allows you to export your Next.js application to static HTML, which can be run standalone without the need of a Node.js server. It is recommended to only use next export if you don't need any of the unsupported features requiring a server.

Pelican

Pelican

jupyter-book

jupyter-book is an open-source tool for building publication-quality books and documents from computational material. jupyter-book uses MyST-Parser as the underlying markdown/notebook parser.

mkdocs

mkdocs

jupter nbconvert

jupyter nbconvert is a built-in command of Jupyter/Lab.

gatsby

gatsby

hugo

Hugo is a static HTML and CSS website generator written in Go. It is optimized for speed, ease of use, and configurability. Hugo takes a directory with content and templates and renders them into a full HTML website.

Hugo relies on Markdown files with front matter for metadata, and you can run Hugo from any directory. This works well for shared hosts and other systems where you don’t have a privileged account.

Hugo renders a typical website of moderate size in a fraction of a second. A good rule of thumb is that each piece of content renders in around 1 millisecond.

Hugo is designed to work well for any kind of website including blogs, tumbles, and docs.

ABlog

ABlog is for blogging with Sphinx. A new blog with Sphinx is a good example of using ABlog + Sphinx.

docusaurus

docusaurus

docsify

docsify

Sphinx

Sphinx

pandoc

pandoc

nbsphinx

nbsphinx is a Sphinx extension that provides a source parser for *.ipynb files. Custom Sphinx directives are used to show Jupyter Notebook code cells (and of course their results) in both HTML and LaTeX output. Un-evaluated notebooks (i.e., notebooks without stored output cells) will be automatically executed during the Sphinx build process.

Copy the Content of Code Block

https://tiborsimon.io/articles/tools/code-copy/

References

Comments