#!/bin/sh
#
# Convert a markdown file to an html file
#
# usage: md2html
#
# html content is output to stdout.
#
# github style sheet from:
# https://github.com/sindresorhus/github-markdown-css
# Markdown.pl is from:
# http://daringfireball.net/projects/downloads/Markdown_1.0.1.zip
#
echo ''
echo ''
echo ' '
echo " Zumo CC3200 `basename $1`"
echo ' '
echo ' '
echo ' '
echo ' '
perl `dirname $0`/Markdown.pl $1
echo ' '
echo ''