blog/make.sh

59 lines
1.3 KiB
Bash
Raw Normal View History

#!/bin/bash
2019-08-17 21:23:54 +00:00
rootDir='./site/'
2019-04-30 20:36:36 +00:00
targetDir='post/'
2018-06-22 20:19:27 +00:00
post() {
2019-04-25 21:45:19 +00:00
tmp=".swap"
full=".fullswap"
2019-04-25 21:45:19 +00:00
base=$(basename $1)
# First build the content of the site
pandoc $1 | sed '3i </div>' >> $tmp
sed -i '1i <div class="header">' $tmp
# next we glue together the header and footer
cat ./templates/post-header.html $tmp ./templates/post-footer.html > $full
2019-04-25 21:53:21 +00:00
rm -f $tmp
# Title, images and tables get added/fixed here
sed -i "5i <title>${base%.*}</title>" $full
sed -i "s/<img/<img class=\"pure-img\"/g" $full
sed -i 's/<table>/<table class="pure-table">/g' $full
# finally move this post to its proper location in the _rootDir
mv $full "$rootDir/$targetDir/${base%.*}.html"
rm -f $full
2018-06-22 20:19:27 +00:00
}
2019-08-17 21:23:54 +00:00
_help() {
echo 'Options:
-p [postDirectory/*]
-r (build root pages)
-s (copy stylesheets)'
}
mkdir -p "$rootDir/post"
2019-08-17 21:23:54 +00:00
while getopts ":srhp:" opt;do
case "$opt" in
s)
cp style.css "$rootDir" # root stylesheet
cp style.css "$rootDir/$targetDir" # post stylesheet
exit 0
;;
r)
# Fix targetDir so that it points to the root of the site output
targetDir=''
post './prebuild/about.md'
post './prebuild/links.md'
post './prebuild/index.md'
exit 0
;;
p)
for file in ${@:2};do
#echo $file
post $file
done
;;
h)
_help;;
esac
done
2019-08-17 21:23:54 +00:00
_help;