summaryrefslogtreecommitdiff
path: root/src/wrappers/hsmarkdown.in
diff options
context:
space:
mode:
authorfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2007-01-02 03:02:27 +0000
committerfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2007-01-02 03:02:27 +0000
commitf4713cfc3eee2d875d6021c794a7271961cd2bb6 (patch)
treea6eb65ae4ea66bf1d49649f350305222f418b7d9 /src/wrappers/hsmarkdown.in
parent5387ebd8db3b8cf98befd75d9aa42716acaf8dec (diff)
Moved hsmarkdown to src/wrappers/hsmarkdown.in, so it works
with our existing build process. There's no harm in having it be a template, even though there's nothing to fill it. git-svn-id: https://pandoc.googlecode.com/svn/trunk@400 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'src/wrappers/hsmarkdown.in')
-rwxr-xr-xsrc/wrappers/hsmarkdown.in5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/wrappers/hsmarkdown.in b/src/wrappers/hsmarkdown.in
new file mode 100755
index 000000000..17f970234
--- /dev/null
+++ b/src/wrappers/hsmarkdown.in
@@ -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 -- "$@"