2025-09-16 12:01:32 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
2025-10-29 14:46:01 +01:00
|
|
|
RELTO="$(dirname "${1}")"
|
|
|
|
|
|
|
|
|
|
sed \
|
|
|
|
|
-e "s|__TITLE__|$(head -n1 "${1}")|" \
|
|
|
|
|
-e "s|__STYLE__|$(realpath --relative-to="${RELTO}" general/style.css)|" \
|
2025-10-29 14:55:00 +01:00
|
|
|
-e "s|__LOGO__|$(realpath --relative-to="${RELTO}" logo.png)|" \
|
2025-10-29 14:46:01 +01:00
|
|
|
< "${0}.d/head.html"
|
2025-11-13 13:37:51 +01:00
|
|
|
|
2025-09-16 12:01:32 +02:00
|
|
|
markdown -f toc,idanchor "${1}" | sed \
|
2025-11-07 22:34:00 +01:00
|
|
|
-e 's/href="\([-_\./[:alnum:]]*\)\.md\(#[-[:alnum:]]*\)\?"/href="\1.html\2"/g' \
|
2025-11-07 22:57:17 +01:00
|
|
|
-e '/<h[1234] /s| id="\(.*\)">| id="\L\1">|' \
|
|
|
|
|
-e '/<h[1234] /s|-2c-||g' -e '/<h[1234] /s|--26-amp-3b-||g'
|
2025-11-13 13:37:51 +01:00
|
|
|
|
2025-09-16 12:01:32 +02:00
|
|
|
printf '</body></html>'
|