A Static Site Generator using markdown files.
Project description
pyssg - Static Site Generator written in Python
Generates HTML files from MD files for a static site, personally using it for a blog-like site.
Initially inspired by Roman Zolotarev's ssg5 and rssg, Luke Smith's lb and sup and, pedantic.software's blogit.
Features and to-do
NOTE: WIP, there will be changes that will break pyssg generations/config setup.
- Build static site parsing
markdownfiles (*.md->*.html)- Uses
jinjafor templating. - Preserves hand-made
*.htmlfiles. - Tag functionality, useful for blog-style sites.
- Uses
- Build
sitemap.xmlfile.- Include manually added
*.htmlfiles.
- Include manually added
- Build
rss.xmlfile.- Include manually added
*.htmlfiles.
- Include manually added
- YAML for configuration file, uses
PyYAML.- Support for multiple "documents".
PyYAMLsupports this. Inpyssgcontext, it means it can generate multiple websites (I personally use it for subdomains). - Support for more complex directory structure to support configuration on a per directory basis.
- Support for multiple "documents".
- File checksum checking for modification of files.
- Option/change to using an SQL database instead of the custom solution.
- Use external markdown extensions.
- So far only extension configuration is for my own extension pymdvar.
Markdown features
This program uses the base markdown syntax plus additional syntax, all thanks to python-markdown that provides extensions. The following extensions are used:
- Extra (collection of QoL extensions).
- Meta-Data.
- Sane Lists.
- SmartyPants.
- Table of Contents.
- With
permalink=Trueandbaselevel=2, for more: python-markdown toc.
- With
- WikiLinks.
- pymdvar (made by me).
- yafg - Yet Another Figure Generator
- Markdown Checklist
- PyMdown Extensions
Installation
Install with pip:
pip install pyssg
Probably will add a PKBUILD (and possibly submit it to the AUR) in the future.
Usage
- Get the default configuration file:
pyssg --copy-default-config -c <path/to/config>
- Where
-cis optional as by default$XDG_CONFIG_HOME/pyssg/config.yamlis used.
- Edit the config file created as needed.
config.yamlis parsed usingPyYAML, more about the config file.
- Initialize the directory structures (source, destination, template) and move template files:
pyssg -i
-
You can modify the basic templates as needed (see variables available for Jinja).
-
Strongly recommended to edit the
rss.xmltemplate.
- Place your
*.mdfiles somewhere inside the source directory. It accepts sub-directories. Optionally configure for subdirectories if they are to be treated a bit different.
- Recommended (no longer mandatory) metadata keys that can be added to the top of
.mdfiles:
title: the title of your blog entry or whatever
author: your name or online handle
another name maybe for multiple authors?
lang: the language the entry is written on
summary: a summary of the entry
tags: english
short
tutorial
etc
- You can add more meta-data keys as long as it is Python-Markdown compliant, and these will ve available as Jinja variables in the
metaobject (dict[str, Any]).
- Build the
*.htmlwith:
pyssg -b
- After this, you have ready to deploy
*.htmlfiles from thedstdirectory.
Config file
All sections/options need to be compliant with PyYAML which should be compliant with YAML 1.2. Additionaly, I've added the custom tag !join which concatenates strings from an array, which an be used as follows:
variable: &variable_reference_name "value"
other_variable: !join [*variable_reference_name, "other_value", 1]
Which would produce other_variable: "valueother_value1". Also environment variables will be expanded internally.
Note: URL's shouldn't have the trailing slash /.
The following is a list of config items that need to be present in the config unless stated otherwise:
%YAML 1.2
---
# not needed, shown here as an example of the !join tag
define: &root "$HOME/path/to/" # $HOME expands to /home/user, for example
title: "Example site"
path:
src: !join [*root, "src"] # $HOME/path/to/src
dst: "$HOME/some/other/path/to/dst"
plt: "plt"
db: !join [*root, "src/", "db.psv"]
url:
main: "https://example.com"
# I personally use a "static" url for images/scripts/css/etc, not necessary
static: "https://static.example.com"
fmt:
date: "%a, %b %d, %Y @ %H:%M %Z"
list_date: "%b %d" # not necessary
list_sep_date: "%B %Y" # not necessary
dirs:
/: # root "dir_path", whatever is sitting directly under "src"
cfg:
plt: "page.html" # each page template, relative to path/plt
tags: False
index: True
rss: True
sitemap: True
exclude_dirs: ["articles", "blog"] # optional; list of subdirs to exclude when parsing this "dir_path"
...
So far only pymdvar can be configured by including the following to the config:
exts:
pymdvar:
variables:
SOME_VAR: "some value"
some_other_variable: 123
enable_env: True # to read environment variables
The config under dirs are just per-subdirectory configuration of directories under src, which I called "dir_paths" for lack of creativity. Only the / "dir_path" is required as it is the config for the root src path files. Mandatory config items for each "dir_path":
cfg:
plt: "template.html"
tags: True
index: True
rss: True
sitemap: True
exclude: [] # not necessary
So that extra "dir_paths" can be added under dirs:
dirs:
/:
cfg:
...
articles:
cfg:
...
gallery:
cfg:
...
etc:
...
The following will be added on runtime to the configuration:
%YAML 1.2
---
fmt:
rss_date: "%a, %d %b %Y %H:%M:%S GMT" # fixed
sitemap_date: "%Y-%m-%d" # fixed
info:
version: "x.y.z" # current 'pyssg' version (0.5.1.dev16, for example)
debug: True/False # depending if --debug was used when executing
rss_run_date: # date the program was run, formatted with 'fmt.rss_date'
sitemap_run_date: # date the program was run, formatted with 'fmt.sitemap_date'
...
You can add any other option/section that you can later use in the Jinja templates via the exposed config object.
Available Jinja variables
These variables are exposed to use within the templates. The below list is displayed in the form of variable (type) (available from): description. field1/field2/field3/... describe config file section from the YAML file and option and object.attribute corresponding object and it's attribute.
config(dict[str, Any]) (all): parsed config file plus the added options internally (as described in config file).dir_config(dict[str, Any]) (all*): parsed dir_config file plus the added options internally (as described in config file). *This is for all of the specific "dir_path" files, as per configured in the YAML filedirs.dir_path.cfg(for exmapledirs./.cfgfor the required dir_path).all_pages(list(Page)) (all): list of all the pages, sorted by creation time, reversed.page(Page) (page.html): contains the following attributes (genarally these are parsed from the metadata in the*.mdfiles):title(str): title of the page.author(list[str]): list of authors of the page.lang(str): page language, used for the generalhtmltaglangattribute.summary(str): summary of the page, as specified in the*.mdfile.content(str): actual content of the page, this is thehtml.toc(str): table of contents as taken frommd.toc.toc_tokens(list[dict[str, Any]]): table of contents tokens as taken frommd.toc_tokens.cdatetime(datetime.datetime): creation datetime object of the page.cdate(method(FMT: str)): takes the name of thefmt.FMTand applies it to thecdatetimeobject.cdate_rss(str): formattedcdatetimeas required by rss.cdate_sitemap(str): formattedcdatetimeas required by sitemap.mdatetime(datetime.datetime): modification datetime object of the page. Defaults toNone.mdate(method(FMT: str)): takes the name of thefmt.FMTand applies it to themdatetimeobject.mdate_rss(str): formattedmdatetimeas required by rss.mdate_sitemap(str): formattedmdatetimeas required by sitemap.tags(list[tuple[str]]): list of tuple of tags of the page, containing the name and the url of the tag, respectively. Defaults to empty list.url(str): url of the page, this already includes theurl/mainfrom config file.next/previous(Page): reference to the next or previous page object (containing all these attributes). Defaults toNone.meta(dict[str, list[str]]): meta dict as obtained frompython-markdown, in case you use a meta tag not directly supported, it will be available there.
tag(tuple[str]) (tag.html): tuple of name and url of the current tag.tag_pages(list[Page]) (tag.html): similar toall_pagesbut contains all the pages for the current tag.all_tags(list[tuple[str]]) (all): similar topage.tagsbut contains all the tags.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pyssg-0.9.0.tar.gz.
File metadata
- Download URL: pyssg-0.9.0.tar.gz
- Upload date:
- Size: 55.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
33289976c0741903a5da6fe52724c691f9b9c0498f07446fc26987029781f73a
|
|
| MD5 |
1a8c93f33585f99c58fe33a814551774
|
|
| BLAKE2b-256 |
56b9a7c6f74e47a9640e90b49332d424a5257067a93f201b6ccb89f823b4ffca
|
File details
Details for the file pyssg-0.9.0-py3-none-any.whl.
File metadata
- Download URL: pyssg-0.9.0-py3-none-any.whl
- Upload date:
- Size: 37.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6269dab3201f031fc03fe815fbc8822541cc337c45a6615c72938dfccc50e9dc
|
|
| MD5 |
0df5286a87ba369ad67aab7c53feaa82
|
|
| BLAKE2b-256 |
f588f831dbec666646c32cd1b3231c73aca41ccee7a2ac3679beaacc9cbc0dde
|