summaryrefslogtreecommitdiff
path: root/mksite.sh
blob: c0bbc8f7b35c50cc4c114bf3050978e40df0ac62 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#! /bin/bash

# USE: ./build.sh <pandoc> <pandoc_flags> <pandoc_format> [sources]

sources=${@}
echo "sources: ${sources}"

function process_dir() {
		pushd .
		arg_dir=$1

		cd ${arg_dir}
		indir_src="$(find . -name '*.md')"
		indir_out="${indir_src##*/}"
		${panexec} ${panflags} ${indir_src} ${panformat} -o ../${indir_out%.*}.html

		mkdir ../site/${arg_dir}

		cp -v ./*.png ../site/${arg_dir}
		mv -v ../${indir_out%.*}.html ../site/${arg_dir}/index.html

		popd
}

for src in ${sources}; do
	if [ -d ${src} ]; then
		printf "\tfound dir: ${src}\n"

		if [ "$(find ${src} -name '*.md' | wc -l)" != "1" ]; then
			printf "\tToo many files in dir. Won't build. Skipping.\n"
			continue
		fi

		process_dir ${src}

	elif [ -f ${src} ] && [ "${src##*.}" == "md" ]; then
		printf "\tfound md file: ${src}\n"

		printf "\tmv -v ${src%.*}.html ../site/${src%.*}.html\n"
		mv -v ${src%.*}.html site/
	else
		printf "Unknown source (%s) - skipping\n" "$src"
	fi
done

#for lab in $(find . -maxdepth 1 -name "lab*" -type d); do
#	echo "Found directory ${lab}"
#done