copying useful new makefile from posting branch

This commit is contained in:
Medium Fries 2018-11-25 15:37:40 -08:00
parent 9069d9425d
commit 0d62dadd38

20
make.sh
View File

@ -1,4 +1,4 @@
# builds a sick post # compiles new post into target directory
post() { post() {
# check directory existence # check directory existence
if [ -f markdown/post/$1 ] if [ -f markdown/post/$1 ]
@ -6,24 +6,35 @@ post() {
# compile the new post and drop it in ./post/ # compile the new post and drop it in ./post/
pandoc markdown/post/$1 --css bstyle.css -s -o post/${1%.*}.html pandoc markdown/post/$1 --css bstyle.css -s -o post/${1%.*}.html
else else
# error message incase file was not found
echo "File \"$1\" not found in markdown/post" echo "File \"$1\" not found in markdown/post"
fi fi
} }
# builds a site "page" like the about page, links page etc # mainly to create new post files
writep() {
if [ -z $1 ]
then
echo 'No filename given'
exit 0
fi
cp ./markdown/template.md ./markdown/post/$1
vim -c "Goyo" ./markdown/post/$1
}
page() { page() {
# we want to enforce maintainence of directory structure # we want to enforce maintainence of directory structure
if [ -f markdown/pages/$1 ] if [ -f markdown/pages/$1 ]
then then
# compile then drop in ./page/
pandoc markdown/pages/$1 --css bstyle.css -s -o page/${1%.*}.html pandoc markdown/pages/$1 --css bstyle.css -s -o page/${1%.*}.html
else else
echo "File \"$1\" not found in markdown/pages" echo "File \"$1\" not found in markdown/pages"
fi fi
} }
# literally just updates the index file nothing else
index() { index() {
pandoc index.md --css style.css -s -o index.html # typing succs pandoc ./markdown/index.md --css style.css -s -o index.html # typing succs
} }
help() { help() {
@ -44,4 +55,5 @@ help() {
esac esac
} }
# taking function names as para
"$@" "$@"