From d0a681c5b2386dc16a99b176d1bea5d6867c6be1 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Mon, 12 Dec 2016 17:09:30 -0800 Subject: [bin] Add a script to render markdown to HTML. --- bin/md-preview | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100755 bin/md-preview diff --git a/bin/md-preview b/bin/md-preview new file mode 100755 index 0000000..07d06e5 --- /dev/null +++ b/bin/md-preview @@ -0,0 +1,24 @@ +#!/bin/bash + +# Render a markdown file to HTML, as a preview. + +set -e + +INPUT="${1:-README.md}" +OUTPUT="${2:-/tmp/output.html}" + +if [ ! -f "${INPUT}" ]; then + echo "You need to specify an input file" 1>&2 + exit 1 +fi + +[ -e "${OUTPUT}" ] && rm "${OUTPUT}" + +pandoc -f markdown_github -c https://goo.gl/OVmlwT --self-contained -o "${OUTPUT}" "${INPUT}" + +if [ -e "${OUTPUT}" ]; then + open "${OUTPUT}" +else + echo "Failed." + exit 1 +fi -- cgit 1.4.1