#!/bin/sh -e
workdir="$(readlink -f "$1")"
if ! [ -z "$2" ]; then
basepath="$2"
else
basepath=""
fi
outdir="$workdir/public_html"
mkdir -p "$outdir/tmp"
mkdir -p "$outdir/assets"
mkdir -p "$outdir/assets/css"
mkdir -p "$outdir/assets/js"
cp "$HOME/.local/share/tinywiki/template.html" "$outdir/assets"
cp "$HOME/.local/share/tinywiki/style.css" "$outdir/assets/css"
cp "$HOME/.local/share/tinywiki/katex.min.css" "$outdir/assets/css"
cp "$HOME/.local/share/tinywiki/katex.min.js" "$outdir/assets/js"
cd "$workdir"
find . -name "*.md" | while read -r file; do
path=$(dirname $file)
name=$(basename $file | cut -f 1 -d '.')
title=$(grep title "$file" | cut -d":" -f 2- | cut -b 2-)
if [ "$title" = "" ]; then
title="$name"
fi
# TODO(zeno): Make this webserver ready
# only works on local machine, because absolute path,
# on webserver with domain, we shoudl support basepath
if ! [ "$basepath" = "" ]; then
echo "["$title"]("$basepath/$path/$name".html)" >> "$outdir/tmp/index-ins.md"
else
echo "["$title"]("$outdir/$path/$name".html)" >> "$outdir/tmp/index-ins.md"
fi
done
find . -name "*.md" ! -name "index-ins.md" | while read -r file; do
echo "Converting $file"
file=$(echo $file | cut -c 3-)
path=$(dirname $file)
name=$(basename $file | cut -f 1 -d '.')
if ! [ "$basepath" = "" ]; then
path_to_root="$basepath"
else
path_to_root="$(realpath --relative-to="$outdir/$path" "$outdir")"
fi
escaped_path_to_root=$(printf '%s\n' "$path_to_root" | sed -e 's/[\/&]/\\&/g')
cp $workdir/$file $outdir/tmp
awk -v S="$(cat $outdir/tmp/index-ins.md)" '/\[\[index\]\]/{$0=S}1' "$file" > "$outdir/tmp/$name.md"
grep -Po '\[.+\]\((?!https?:\/\/).*(?<!\.html|\.png|\.svg|\.jpg)\)' "$workdir/$file" | while read match; do
clean_match=$(echo $match | awk -F '(' ' {{print $2}} ' | cut -f 1 -d ')')
link=$clean_match.html
escaped_match=$(printf '%s\n' "$clean_match" | sed -e 's/[\/&]/\\&/g')
escaped_link=$(printf '%s\n' "$link" | sed -e 's/[\/&]/\\&/g')
sed -ie "s/$escaped_match/$escaped_link/" "$outdir/tmp/$name.md"
done
mkdir -p $outdir/$path
pandoc -s --template="$outdir/assets/template.html" -V home="$path_to_root/index.html" --css=$path_to_root/assets/css/style.css --highlight-style breezedark -f markdown+hard_line_breaks --katex $outdir/tmp/"$name".md -o $outdir/$path/$name.html
sed -i "s/https:\/\/cdn.jsdelivr.net\/npm\/katex@[0-9]*\.[0-9]*\.[0-9]*\/dist\/katex.min.css/$escaped_path_to_root\/assets\/css\/katex.min.css/g" "$outdir/$path/$name.html"
sed -i "s/https:\/\/cdn.jsdelivr.net\/npm\/katex@[0-9]*\.[0-9]*\.[0-9]*\/dist\/katex.min.js/$escaped_path_to_root\/assets\/js\/katex.min.js/g" "$outdir/$path/$name.html"
done
rm -rf $outdir/tmp
echo DONE