diff options
author | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2007-01-02 03:02:27 +0000 |
---|---|---|
committer | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2007-01-02 03:02:27 +0000 |
commit | f4713cfc3eee2d875d6021c794a7271961cd2bb6 (patch) | |
tree | a6eb65ae4ea66bf1d49649f350305222f418b7d9 /src | |
parent | 5387ebd8db3b8cf98befd75d9aa42716acaf8dec (diff) | |
download | pandoc-f4713cfc3eee2d875d6021c794a7271961cd2bb6.tar.gz |
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')
-rwxr-xr-x | src/wrappers/hsmarkdown.in | 5 |
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 -- "$@" |