aboutsummaryrefslogtreecommitdiff
path: root/html2markdown
diff options
context:
space:
mode:
Diffstat (limited to 'html2markdown')
-rw-r--r--html2markdown7
1 files changed, 7 insertions, 0 deletions
diff --git a/html2markdown b/html2markdown
index 4320ce9b1..66370c3fa 100644
--- a/html2markdown
+++ b/html2markdown
@@ -22,6 +22,13 @@ for p in pandoc tidy; do
}
done
+ALL="$*"
+ARGS=${ALL%%-- *}
+REST=${ALL#$ARGS}
+
+REST=${REST#--}
+PANDOC_OPTS=${REST:-$PANDOC_OPTS}
+
if [ -z "$1" ] || [ -f $1 ]; then
tidy -utf8 $1 2>/dev/null | \
pandoc $PANDOC_OPTS -r html -w markdown -s | \