summaryrefslogtreecommitdiff
path: root/hsmarkdown
diff options
context:
space:
mode:
Diffstat (limited to 'hsmarkdown')
-rwxr-xr-xhsmarkdown5
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 -- "$@"