#!/usr/bin/env sh
function err {
echo "$@" >&2
}
if [ $# -ne 1 ]; then
err "./gmi2html.sh /path/to/gmi"
exit 1;
fi
# main method
GMI=$1
list=0
pre=0
quote=0
while read line; do
# if in pre-mode and not closing - print and skip
if [ $pre -eq 1 ]; then
if [ ! -n "$(sed -nE '/^[`]{3}/p' <<< $line)" ]; then
echo "$line"
continue;
fi
fi
# quotes
if [ -n "$(sed -nE '/^[>] .+/p' <<< $line)" ]; then
if [ $quote -eq 0 ]; then
echo ""
quote=0
fi
fi
fi
if [ -n "$(sed -nE '/^[`]{3}/p' <<< $line)" ]; then
if [ $pre -eq 0 ]; then
echo "
"
pre=1
else
echo "
"
pre=0
fi
continue;
fi
# lists
if [ -n "$(sed -nE '/^[*] .+/p' <<< "$line")" ]; then
if [ $list -eq 0 ]; then
echo "