summary refs log tree commit diff
path: root/bin/html.sh
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2021-01-12 20:58:51 -0500
committerJune McEnroe <june@causal.agency>2021-01-12 20:58:51 -0500
commitb0e6001e1aab755dfc02e26170bfd5cb5e9358aa (patch)
tree589c020fc4b8ebebf952cf654d578c0b6eb3392a /bin/html.sh
parentAdd htagml -x (diff)
downloadsrc-b0e6001e1aab755dfc02e26170bfd5cb5e9358aa.tar.gz
src-b0e6001e1aab755dfc02e26170bfd5cb5e9358aa.zip
Render tag index in HTML
Diffstat (limited to 'bin/html.sh')
-rw-r--r--bin/html.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/bin/html.sh b/bin/html.sh
index 5b59003f..c86ce87a 100644
--- a/bin/html.sh
+++ b/bin/html.sh
@@ -43,6 +43,11 @@ body {
 	margin: 1em auto;
 	padding: 0 1ch;
 }
+ul.index { padding: 0; }
+ul.index li {
+	display: inline;
+	list-style-type: none;
+}
 a { color: var(--ansi4); }
 a:visited { color: var(--ansi5); }
 a.permalink, a.tag {
@@ -70,5 +75,6 @@ while [ $# -gt 0 ]; do
 	<p>
 	<a href="${GitURL}/${src}">${src} in git</a>
 	EOF
+	./htagml -x -f htmltags "${src}"
 	./htagml -p -f htmltags "${src}"
 done