df7b682251
git-svn-id: https://pandoc.googlecode.com/svn/trunk@2 788f1e2b-df1e-0410-8736-df70ead52e1b
7 lines
179 B
Bash
7 lines
179 B
Bash
#!/bin/sh -e
|
|
# converts markdown to latex
|
|
[ -n "$(which pandoc)" ] || {
|
|
echo >&2 "You need 'pandoc' to use this program!"
|
|
exit 1
|
|
}
|
|
iconv -t utf-8 $* | pandoc -w latex -s
|