commit d255058a4618d5f434eeabe4a1b8cc26e782a7d9
parent 3d70f253ef49b80f58b3009074b889ac833ad542
Author: Sebastiano Tronto <sebastiano@tronto.net>
Date: Sat, 24 May 2025 15:49:43 +0200
Make lowdown output HTML
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/build.sh b/build.sh
@@ -22,7 +22,8 @@ copyfile() {
md)
t="$(markdowntitle "$file")"
sed "s/TITLE/$t/" < top.html > "$ind"
- lowdown "$file" >> "$ind"
+ lowdown --html-no-skiphtml --html-no-escapehtml \
+ "$file" >> "$ind"
cat bottom.html >> "$ind"
;;
html)