mirror of
https://github.com/jgm/pandoc.git
synced 2026-08-29 03:36:42 +00:00
git-svn-id: https://pandoc.googlecode.com/svn/trunk@2 788f1e2b-df1e-0410-8736-df70ead52e1b
8 lines
167 B
Bash
8 lines
167 B
Bash
#!/bin/sh -e
|
|
# converts markdown to HTML
|
|
[ -n "$(which pandoc)" ] || {
|
|
echo >&2 "You need 'pandoc' to use this program!"
|
|
exit 1
|
|
}
|
|
iconv -t utf-8 $* | pandoc
|