mirror of
https://github.com/jgm/pandoc.git
synced 2026-08-26 02:06:32 +00:00
+ 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
6 lines
258 B
Bash
Executable File
6 lines
258 B
Bash
Executable File
#!/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 -- "$@"
|