diff options
| author | June McEnroe <june@causal.agency> | 2021-01-12 20:58:51 -0500 |
|---|---|---|
| committer | June McEnroe <june@causal.agency> | 2021-01-12 20:58:51 -0500 |
| commit | b0e6001e1aab755dfc02e26170bfd5cb5e9358aa (patch) | |
| tree | 589c020fc4b8ebebf952cf654d578c0b6eb3392a /bin | |
| parent | Add htagml -x (diff) | |
| download | src-b0e6001e1aab755dfc02e26170bfd5cb5e9358aa.tar.gz src-b0e6001e1aab755dfc02e26170bfd5cb5e9358aa.zip | |
Render tag index in HTML
Diffstat (limited to '')
| -rw-r--r-- | bin/html.sh | 6 |
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 |