summaryrefslogtreecommitdiff
path: root/gen-online.sh
blob: 4ba5a5bf32d17303dcedf1a6fdbb5862f9ad5269 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/bin/sh -e

# This script solely generates the formatted code as hosted on the distress.network website. It is thus not intended for actual use by anyone other than the site owner.

tmp=$(mktemp -p /tmp)
css="h3,.lp-ref {font-family: neue-haas-grotesk-text, var(--fs-sans); font-size: 1rem; font-weight: normal; font-style: italic;} h3 {margin: 1rem;}"

for file in "data" "log" "tangle" "weave" ; do
	in="${file}.lp" ; out="doc/online/${file}.html" ;
	cat "doc/online/header" "$in" | ./weave > "$tmp" ;
	sed "s;title: ;&${in};1" -i'' "$tmp" ;
	sed "s;leading: ;&${in};1" -i'' "$tmp" ;

	pushd "../web" > "/dev/null" ;
	sh "./md.sh" "$tmp" "../literary/$out" > "/dev/null" ;
	popd > "/dev/null" ;
	sed "/<meta http-equiv=/d" -i'' "$out" ;
	sed "s~</head>~<style>${css}</style>\n&~1" -i'' "$out" ;
	sed 's;\(.*\)@= \(.*\) =@;\1<span class="lp-ref">(\2)</span>;1' -i'' "$out" ;

	echo "[ok]	generated text '${file}'" ;
done

sh "./../sync.sh"

rm "$tmp"