mirror of
https://github.com/NeoCloud/NeoNetwork
synced 2024-11-05 04:42:23 +08:00
13 lines
181 B
Bash
Executable file
13 lines
181 B
Bash
Executable file
#!/bin/sh
|
|
set -xeu
|
|
|
|
if ! which markdown 2>&1 > /dev/null; then
|
|
echo "need markdown"
|
|
exit
|
|
fi
|
|
|
|
(
|
|
cat docs/header.html
|
|
markdown README.md
|
|
cat docs/footer.html
|
|
) > docs/index.html
|