~ajhalili2006's personal website, built with Zensical (successor of Material for Mkdocs) [old repo name got bugged while attempting to do manual knot migration via repo deletion] andreijiroh.dev
zensical mkdocs-material website
1#!/usr/bin/env bash 2 3if [[ $DEBUG != "" ]]; then 4 set -x 5fi 6COMMAND=$* 7 8if [[ $1 = "serve" ]] || [[ $1 == "build" ]] || [[ $1 == "gh-deploy" ]] || [[ $1 == "new" ]] || [[ $1 == "--help" ]]; then 9 exec "mkdocs $COMMAND" 10else 11 exec "$COMMAND" 12fi