You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
587 B
36 lines
587 B
2 years ago
|
#!/usr/bin/env bash
|
||
|
|
||
|
case "$1" in
|
||
|
tag)
|
||
|
title="Archive: $(echo "$ALLTAGS" | tr ' _' '\n ' | grep -i "$(echo "$2" | tr '_' ' ')")"
|
||
|
template="$(echo "" | pandoc --template=templates/blog.html \
|
||
|
-f markdown -t html5 -M archive -M title:"$title" 2> /dev/null )"
|
||
|
shift
|
||
|
;;
|
||
|
index)
|
||
|
echo "# Jonathan Hodgson"
|
||
|
echo ""
|
||
|
echo "## Blogs"
|
||
|
echo ""
|
||
|
|
||
|
;;
|
||
|
esac
|
||
|
|
||
|
shift
|
||
|
|
||
|
|
||
|
|
||
|
for i in "$@"; do
|
||
|
case "$i" in
|
||
|
tmp/intros/*)
|
||
|
cat "$i"
|
||
|
echo ""
|
||
|
;;
|
||
|
esac
|
||
|
done
|
||
|
|
||
|
|
||
|
echo "## Other Links"
|
||
|
echo "=> /help-me-out/ Help Me Out"
|
||
|
echo "=> /other-stuff-you-might-like/ Other Stuff You Might Like"
|