25 lines
608 B
Bash
Executable File
25 lines
608 B
Bash
Executable File
#!/bin/sh
|
|
|
|
DIR=$(dirname "$(readlink -f "$0")")
|
|
. "$DIR/../env.sh"
|
|
|
|
|
|
# install cmark-gfm: convert markdown to html,man,xml,latex,comman-mark
|
|
case "$PM" in
|
|
apt)
|
|
sudo apt install -y cmark-gfm entr
|
|
;;
|
|
pacman)
|
|
sudo pacman -S --noconfirm --needed cmark-gfm entr
|
|
;;
|
|
esac
|
|
|
|
# live server for html previewing
|
|
. "$PDIR/devel/nodejs.sh"
|
|
sudo $NPM_BIN install -g live-server
|
|
|
|
# convert to html with embeded <style>: cmark-gfm input.md --to html --unsafe > /path/to/output.html
|
|
# entr watch input.md and rerun convert command
|
|
# live-server to observe html file and reload browser
|
|
|