pgLatLon
view make-doc.sh @ 80:b9cdc74a90db
Clear memory of datums on allocation to avoid non-zero garbage in padding on all possible platforms
| author | jbe | 
|---|---|
| date | Thu Oct 23 10:39:05 2025 +0200 (11 days ago) | 
| parents | 3b70e93cc07d | 
| children | b0e17a5a0258 | 
 line source
     1 #!/bin/sh
     2 #
     3 # This command can be used to update the README.html file after changing the
     4 # README.mkd file.
     6 echo "<html><head><title>"`grep '[^ \t\r\n][^ \t\r\n]*' README.mkd | head -n 1`"</title></head><body>" > README.html
     7 markdown2 README.mkd >> README.html
     8 echo "</body></html>" >> README.html
