diff options
author | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2006-11-01 06:33:47 +0000 |
---|---|---|
committer | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2006-11-01 06:33:47 +0000 |
commit | a4a2792dc11df1a5d2b523261de09118ca8e5262 (patch) | |
tree | 5379af59007a14326a893f06d704caa5a304a0a8 /html2markdown | |
parent | b8d960d1b9e09d4104f79d4c1ff0fc427391be33 (diff) | |
download | pandoc-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 'html2markdown')
-rw-r--r-- | html2markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/html2markdown b/html2markdown index 931c74b74..8bae3a3bf 100644 --- a/html2markdown +++ b/html2markdown @@ -12,7 +12,7 @@ } if [ -z "$1" ] || [ -f $1 ]; then - tidy -utf8 $1 2>/dev/null | pandoc -r html -w markdown -s + tidy -utf8 $1 2>/dev/null | pandoc -r html -w markdown -s | iconv -f utf-8 else # Treat given argument as an URL. Locate a # sensible text based browser (note the order). @@ -35,5 +35,5 @@ else exit 1 ;; esac # Fetch and feed to pandoc. - $DUMPER $OPT $1 2>/dev/null | tidy -utf8 2>/dev/null | pandoc -r html -w markdown -s + $DUMPER $OPT $1 2>/dev/null | tidy -utf8 2>/dev/null | pandoc -r html -w markdown -s | iconv -f utf-8 fi |