There are still too few static website building tools available. This is mine. I was previously working with pelican as a static website builder, but I ended up with a mess of plugins to achieve what I wanted. So how hard could it be to create your own static website builder? It's not that hard—about 500 lines of code.
This is similar to pelican. Each source file has a header with metadata and the body with the content:
title: Timing in der Digitaltechnik
parent: uebersicht.md
latex: true
# Allgemeines
Bisher wurden die Elemente der kombinatorischen Schaltnetze und der sequentiellen Schaltwerke so betrachtet, dass jede Änderung eines diskreten Zustandes (logisch 0 oder 1) unmittelbar zu einer Änderung führt. Für reale Bauelemente gilt dies nicht, da jede Änderung mit einer bestimmten Verzögerung behaftet ist. Diese Verzögerungen kommen teils durch die Ausbreitungsgeschwindigkeit selbst oder durch Ladevorgänge innerhalb der Bauteile.
...Internal links are rendered normally. Download links are rendered like this and have a tooltip showing the filename and size:
External links are also marked as such:
The breadcrumbs path is automatically generated from parent metadata in markdown files. The previous and next links are
automatically generated using the next metadata (previous is not needed).
Folders containing source files that should not be included in the output must have a suffix of .source in their folder name.
To compress a folder into a .zip file, add a suffix of .compress
CSS file is generated from SASS files. A suffix based on the git commit sha is automatically added to invalidate the web browser cache, when the content is updated.
Each heading is getting its own anchor for a permalink. When hovering over the heading a link to the anchor appears.
Title, author, source and license for figures can be added directly in the markdown source.
.. figure:: bitstuffing.svg
:title: Bitstopfen mit Weite 5
:author: Mik81
:source: https://commons.wikimedia.org/wiki/File:Bitstuffing.svg
:license: Public DomainPages can be written in english and german. The used language is indicated in the markdown meta data. For this site
german is the default and english is indicated by english: true.
Latex rendering is available when latex: true is found in the metadata of the page. Latex expressions are started
with \\( and ended with \\) for inline expressions. Paragraphs are surrounded with $$.
### IIR
Ein IIR System liefert eine unendliche lange Impulsantwort. Dies kann der Fall sein, wenn z.B. durch eine Rückkopplung
der Ausgang zum Zeitpunkt \\(y[n]\\) von \\(y[n-1]\\) abhängig ist.
$$y[n]=\sum\limits_{k=0}^\infty h[k] \cdot x[n-k]$$- (Optionally) create a virtual environment (eg.
python3 -m venv .venv; source .venv/bin/activate) - install via
pip install .(orpip install -e .if you want to work on the source code) - run
aestatic- result is in folder ./output
- run
poetry shelland thenpoetry install - run
aestatic- result is in folder ./output - optionally install jupyter notebooks with tensorflow and others using
poetry install --with jupyter




