pandoc/latex2markdown

8 lines
221 B
Text
Raw Normal View History

#!/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 | iconv -f utf-8