pandoc/latex2markdown
fiddlosopher df7b682251 initial import
git-svn-id: https://pandoc.googlecode.com/svn/trunk@2 788f1e2b-df1e-0410-8736-df70ead52e1b
2006-10-17 14:22:29 +00:00

7 lines
204 B
Bash

#!/bin/sh -e
# runs pandoc to convert latex to markdown
[ -n "$(which pandoc)" ] || {
echo >&2 "You need 'pandoc' to use this program!"
exit 1
}
iconv -t utf-8 $* | pandoc -r latex -w markdown -s