annotate make-doc.sh @ 82:8a08dc69de98
Use cmark instead of markdown2 in make-doc.sh
| author |
jbe |
| date |
Thu Oct 23 15:19:13 2025 +0200 (4 days ago) |
| parents |
b0e17a5a0258 |
| children |
|
| rev |
line source |
|
jbe@0
|
1 #!/bin/sh
|
|
jbe@0
|
2 #
|
|
jbe@0
|
3 # This command can be used to update the README.html file after changing the
|
|
jbe@81
|
4 # README.md file.
|
|
jbe@0
|
5
|
|
jbe@81
|
6 echo "<html><head><title>"`grep '[^ \t\r\n][^ \t\r\n]*' README.md | head -n 1`"</title></head><body>" > README.html
|
|
jbe@82
|
7 cmark README.md >> README.html
|
|
jbe@0
|
8 echo "</body></html>" >> README.html
|