aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastiano Tronto <sebastiano@tronto.net>2025-05-24 15:49:43 +0200
committerSebastiano Tronto <sebastiano@tronto.net>2025-05-24 15:49:43 +0200
commitd255058a4618d5f434eeabe4a1b8cc26e782a7d9 (patch)
tree5ddfff2709dc3c198b809947a4759fcff1cab648
parent3d70f253ef49b80f58b3009074b889ac833ad542 (diff)
downloadsebastiano.tronto.net-d255058a4618d5f434eeabe4a1b8cc26e782a7d9.tar.gz
sebastiano.tronto.net-d255058a4618d5f434eeabe4a1b8cc26e782a7d9.zip
Make lowdown output HTML
-rwxr-xr-xbuild.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/build.sh b/build.sh
index 67776d5..f612269 100755
--- a/build.sh
+++ b/build.sh
@@ -22,7 +22,8 @@ copyfile() {
22 md) 22 md)
23 t="$(markdowntitle "$file")" 23 t="$(markdowntitle "$file")"
24 sed "s/TITLE/$t/" < top.html > "$ind" 24 sed "s/TITLE/$t/" < top.html > "$ind"
25 lowdown "$file" >> "$ind" 25 lowdown --html-no-skiphtml --html-no-escapehtml \
26 "$file" >> "$ind"
26 cat bottom.html >> "$ind" 27 cat bottom.html >> "$ind"
27 ;; 28 ;;
28 html) 29 html)

Generated with cgit - Back to sebastiano.tronto.net