mirror of
https://gitlab.com/octtspacc/OcttKB
synced 2025-03-10 21:50:05 +01:00
13 lines
327 B
Bash
13 lines
327 B
Bash
#!/bin/sh
|
|
cd ./public
|
|
|
|
# Build single-page no-JS wiki
|
|
tiddlywiki \
|
|
--load index.html \
|
|
--output ./ \
|
|
--rendertiddler $:/core/templates/static.template.css Style.css text/plain \
|
|
--rendertiddler $:/core/templates/alltiddlers.template.html Static.html text/plain
|
|
|
|
# Apply patches to the static HTML
|
|
python3 ../PatchStatic.py
|