diff options
Diffstat (limited to 'src/wrappers/hsmarkdown.in')
-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 -- "$@" |