8 lines
167 B
Text
8 lines
167 B
Text
|
#!/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
|