annotate make-doc.sh @ 1809:5425f77466ec
Set identification to null if empty string
author |
bsw |
date |
Thu Dec 02 13:20:26 2021 +0100 (2021-12-02) |
parents |
4d5f30d8df4a |
children |
|
rev |
line source |
bsw@1657
|
1 #!/bin/sh
|
bsw@1657
|
2 #
|
bsw@1657
|
3 # This command can be used to update the INSTALL.html file after changing the
|
bsw@1657
|
4 # INSTALL.mkd file.
|
bsw@1657
|
5
|
bsw@1657
|
6 echo "<html><head><title>"`grep '[^ \t\r\n][^ \t\r\n]*' INSTALL.mkd | head -n 1`"</title></head><body>" > INSTALL.html
|
bsw@1657
|
7 markdown2 INSTALL.mkd >> INSTALL.html
|
bsw@1657
|
8 echo "</body></html>" >> INSTALL.html
|