Fix up some broken links; make td more verbose when deploying website.

This commit is contained in:
Jordan Bancino 2022-09-23 09:04:16 -04:00
parent 5178fd2d21
commit f19f543fd2
2 changed files with 2 additions and 1 deletions

View file

@ -165,7 +165,7 @@ information.
</tr>
</table>
<p>
You can check out the change log <a href="#change-log">here</a>.
You can find the change log in the documentation.
</p>
<h2 id="documentation">Documentation</h2>
<p>

View file

@ -170,6 +170,7 @@ recipe_site() {
find docs/ -name '*.[1-9]' | while IFS= read -r man; do
html=$(basename "$man")
mandoc -Thtml "$man" > "$TELODENDRIA_PUB/$html.html"
echo "$man" > "$TELODENDRIA/$html.html"
done
}