diff options
Diffstat (limited to 'latex2markdown')
-rw-r--r-- | latex2markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/latex2markdown b/latex2markdown index 8f935aef5..3974f279a 100644 --- a/latex2markdown +++ b/latex2markdown @@ -25,7 +25,7 @@ ALL="$*" ARGS=${ALL%% -- *} # only the part before ' -- ' delimiters is relevant set -- $ARGS -REST=${ALL#$ARGS}; REST=${REST#--} +REST=${ALL#$ARGS}; REST=${REST# -- } PANDOC_OPTS=${REST:-$PANDOC_OPTS} iconv -t utf-8 $* | pandoc $PANDOC_OPTS -r latex -w markdown -s | \ |