prioritising removal of blank spaces

This commit is contained in:
Atlas Cove 2022-10-06 12:13:57 +01:00
parent 32f90eb39f
commit 988eb326f9
3 changed files with 1 additions and 3 deletions

View File

@ -12,6 +12,5 @@
<p>Everything&#8217;s slowly being set up and the like, so you&#8217;ll only be able to access here unless you know the layout.</p>
<p>I <em>may</em> make a sitemap, I may not. Just getting the infastructure set up.</p>
<p><img src="/img/ucbanner.gif" alt="The Second Banner" /></p>
</body>
</html>

View File

@ -13,6 +13,5 @@
<p><strong>Page not found.</strong></p>
<p>The requested page could not be found.</p>
<p><hr /></p>
</body>
</html>

View File

@ -2,5 +2,5 @@
# render.sh: part of the tape-and-string framework.
declare -A title=([not_found]="404 - Page Not Found" [index]="Atlas48's Archives")
for i in *.txti; do
flatiron < $i | m4 -DTITLE=${title[${i##.html}]} main.html.m4 > ../${i/txti/html}
flatiron < $i | m4 -DTITLE=${title[${i##.html}]} main.html.m4 | sed '/^$/d' > ../${i/txti/html}
done