From 5387ebd8db3b8cf98befd75d9aa42716acaf8dec Mon Sep 17 00:00:00 2001 From: fiddlosopher Date: Tue, 2 Jan 2007 02:58:54 +0000 Subject: Added 'hsmarkdown' wrapper, designed to be used as a drop-in replacement for Markdown.pl. It calls pandoc with the options '--from markdown --to html --strict' and disallows other options. (Any command-line options will be interpreted as arguments.) git-svn-id: https://pandoc.googlecode.com/svn/trunk@399 788f1e2b-df1e-0410-8736-df70ead52e1b --- hsmarkdown | 5 +++++ 1 file changed, 5 insertions(+) create mode 100755 hsmarkdown (limited to 'hsmarkdown') diff --git a/hsmarkdown b/hsmarkdown new file mode 100755 index 000000000..17f970234 --- /dev/null +++ b/hsmarkdown @@ -0,0 +1,5 @@ +#!/bin/sh +# hsmarkdown - intended as a drop-in replacement for Markdown.pl. +# Uses pandoc to convert from markdown to HTML, using --strict mode +# for maximum compatibility with official markdown syntax. +exec pandoc --from markdown --to html --strict -- "$@" -- cgit v1.2.3