Generate static website from using python
Go to file
Michal Szczepanski b9ff44e4e1 fix: feed.xml generation 2023-06-12 18:50:03 +02:00
lib fix: feed.xml generation 2023-06-12 18:50:03 +02:00
.gitignore feat: replace config.yml with argparse 2022-11-27 20:58:47 +01:00
LICENSE fix: generate blog pages 2022-11-27 20:25:53 +01:00
README.md feat: replace config.yml with argparse 2022-11-27 20:58:47 +01:00
requirements.txt fix: feed.xml generation 2023-06-12 18:50:03 +02:00
static_site_generator.py feat: replace config.yml with argparse 2022-11-27 20:58:47 +01:00

README.md

static-site-generator

Description

Static website generator that is using jekyll format to generate vane.pl website.
No jekyll configuration files or existing markdown data was changed to generate output.

Dependencies

pygments - for syntax hightlighting
libsass - for sass style compile
csscompressor - for css compression
markdown - for makrdown parsing generation
liquidpy - for liquid template parsing

Emulate

  • jekyll
  • rouge
  • jekyll-feed
  • jekyll-sitemap
  • jekyll-seo-tag

Install

git clone https://github.com/vane/static-site-generator.git
python3 -m .venv static-site-generator-env
source static-site-generator-env/bin/activate
pip install -r static-site-generator/requirements.txt

Usage

python static_site_generator.py -h
  • input - directory with jekyll website data (the one containing _config.yml)
  • output - directory for generated files (assets directory in output will be deleted during generation)

Sample run

#!/bin/bash
.venv/bin/python3 static_site_generator.py \
-i /home/user/jekyl-blog-root \
-o /home/user/blog-generated