skiqqy.xyz/build.sh

56 lines
1.5 KiB
Bash
Raw Normal View History

2020-10-23 23:08:10 +00:00
#!/bin/bash
# Auther: Skiqqy
HOST="https://github.com/"
conv () {
# Take a file and convert it to html by making substitutes.
# ^/name -> https://github.com/name
# */name.domain -> https://name.domain
2020-10-25 17:03:21 +00:00
# !/name.domain -> http://name.domain
2020-10-23 23:08:10 +00:00
sed -E "s|(\\^/)([^ \)]*)|^\/<a href=$HOST/\2>\2</a>|g" |
sed -E "s|(\\*/)([^ \)]*)|*\/<a href=https:\/\/\2/>\2</a>|g" |
2020-10-25 17:04:41 +00:00
sed -E "s|(\\!/)([^ \)]*)|!\/<a href=http:\/\/\2/>\2</a>|g" |
2020-10-23 23:08:10 +00:00
sed -E '/%%BODY%%/r /dev/stdin' raw/template.html |
2020-11-10 08:24:09 +00:00
sed -E '/%%BODY%%/d' |
sed 's/%%HEADER%%/'"$header"'/g'
2020-10-23 23:08:10 +00:00
}
2020-11-10 08:24:09 +00:00
main () {
while getopts "d" opt
do
case $opt in
d)
2020-11-11 20:14:39 +00:00
dev="<h4 class=dev>Please note, this is the development page, things may be broken\.<\/h4><h4 class=dev>Last built on $(date)\.<\/h4><details><summary>Details<\/summary>This version of my website is hosted inside a <a href=https:\/\/github.com\/skiqqy\/skiqqy-docker>docker container<\/a> and pulls from origin\/dev every 10 seconds, hence it is possible for the site to be unstable, this is only for demo purposes\.<\/details>"
2020-11-10 08:24:09 +00:00
;;
*)
exit 2
;;
esac
done
mkdir -p site
for file in raw/*.txt
do
case $file in
*index.txt)
path=index.html
header="<h1>Skiqqy<\/h1>~ Pronounced skippy"
;;
*)
header="<h1>$(echo $file | cut -d "/" -f 2 | cut -d "." -f 1)<\/h1>"
path=${file/raw/site}
path=${path/txt/html}
;;
esac
[[ -n $dev ]] && header="$header$dev"
echo "Building $file"
conv < "$file" > $path
done
}
main "$@"