summaryrefslogtreecommitdiff
path: root/hsmarkdown
blob: 17f970234aca44ed17c9e5432459a8a02fb04d63 (plain)
1
2
3
4
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 -- "$@"