diff options
author | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2008-08-09 23:45:14 +0000 |
---|---|---|
committer | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2008-08-09 23:45:14 +0000 |
commit | 2ba5ff94833c9fee0fb2799e5440d8b235f9410e (patch) | |
tree | 85379762e9973622158d60340fc42bc4fa2eefe3 /hsmarkdown | |
parent | db729a08c89d7d93483a9b4e880d4f3bef17d521 (diff) | |
download | pandoc-2ba5ff94833c9fee0fb2799e5440d8b235f9410e.tar.gz |
Include shell scripts themselves in repo, rather than generating from wrappers.
+ Removed wrappers directory
+ Removed wrappers Makefile target
+ Added hsmarkdown, html2markdown, and markdown2pdf
git-svn-id: https://pandoc.googlecode.com/svn/trunk@1387 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'hsmarkdown')
-rwxr-xr-x | hsmarkdown | 5 |
1 files changed, 5 insertions, 0 deletions
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 -- "$@" |