blob: 60dd78a6fd24bbf94cfcdb225967d83549b93d73 (
plain)
1
2
3
4
5
6
7
|
#!/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 $PANDOC_OPTS | iconv -f utf-8
|