diff options
Diffstat (limited to 'markdown2latex')
-rw-r--r-- | markdown2latex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/markdown2latex b/markdown2latex index 3e4d1da24..9fafbafa5 100644 --- a/markdown2latex +++ b/markdown2latex @@ -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 -w latex -s | iconv -f utf-8 |