Static site generator.
Go to file
gd 57d6d2b32b add version 1.0.2 2021-12-23 21:46:20 +03:00
docs add version 1.0.2 2021-12-23 21:46:20 +03:00
.gitignore init 2021-04-12 01:45:44 +03:00
README.md init 2021-04-12 01:45:44 +03:00
peji.py fix syntax and update version 2021-12-23 21:38:03 +03:00
requirements.txt update requirements 2021-12-23 21:15:19 +03:00
setup.py fix syntax and update version 2021-12-23 21:38:03 +03:00

README.md

Pēji

Pēji (Japanese: ページ, "page") is simple way to generate small static sites (one or more pages).

If you need to collect several pages from the Markdown, then Pēji are great for you.

Note: Pēji is not intended to generate a blog site. Its single pages only. You can link pages with hyper-links, but you have to do it manually.

Features:

  • Python-Markdown is used.
  • Code syntax highlighting via Pygments.
  • Jinja2 template engine.
  • Custom style and layout for specific page.
  • Site menu bar can be edited through the config.
  • YAML config file.

Installation and quickstart

Install Pēji globally or into virtual environment:

pip install Peji

Create your site:

peji create mysite
cd mysite/

Create your first page and place it into mysite/pages/:

index.md:

---
title: My first page
---

# My heading

It works!

Build your site:

peji build

Site will be placed in ./mysite/build.

Also you can run Python built-in HTTP Server:

python3 -m http.server --directory build/

License

Pēji is released under The Unlicense. See https://unlicense.org/ for detais.