aboutsummaryrefslogtreecommitdiff
path: root/latex2markdown
diff options
context:
space:
mode:
authorfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2006-11-01 06:33:47 +0000
committerfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2006-11-01 06:33:47 +0000
commita4a2792dc11df1a5d2b523261de09118ca8e5262 (patch)
tree5379af59007a14326a893f06d704caa5a304a0a8 /latex2markdown
parentb8d960d1b9e09d4104f79d4c1ff0fc427391be33 (diff)
downloadpandoc-a4a2792dc11df1a5d2b523261de09118ca8e5262.tar.gz
Use iconv on output as well as input in wrapper scripts.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@58 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'latex2markdown')
-rw-r--r--latex2markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/latex2markdown b/latex2markdown
index ce75ac117..d55c69268 100644
--- a/latex2markdown
+++ b/latex2markdown
@@ -4,4 +4,4 @@
echo >&2 "You need 'pandoc' to use this program!"
exit 1
}
-iconv -t utf-8 $* | pandoc -r latex -w markdown -s
+iconv -t utf-8 $* | pandoc -r latex -w markdown -s | iconv -f utf-8