9a67a486c2
git-svn-id: https://pandoc.googlecode.com/svn/trunk@1104 788f1e2b-df1e-0410-8736-df70ead52e1b
5 lines
258 B
Bash
5 lines
258 B
Bash
#!/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 -- "$@"
|