From 574290c92f0c62298491134458bd98ceba151774 Mon Sep 17 00:00:00 2001 From: fiddlosopher Date: Mon, 13 Nov 2006 15:22:41 +0000 Subject: Modified wrapper scripts to pass all command-line options after -- to pandoc. These options override the environment variable PANDOC_OPTS, if it is set. (Note: these changes don't include changes to the documentation or man pages, or to markdown2pdf.) git-svn-id: https://pandoc.googlecode.com/svn/trunk@95 788f1e2b-df1e-0410-8736-df70ead52e1b --- markdown2latex | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'markdown2latex') diff --git a/markdown2latex b/markdown2latex index 0fc2077cb..4f9e7d8f4 100644 --- a/markdown2latex +++ b/markdown2latex @@ -21,4 +21,11 @@ for p in pandoc; do } done -iconv -t utf-8 $* | pandoc $PANDOC_OPTS -w latex -s | iconv -f utf-8 +ALL="$*" +ARGS=${ALL%%-- *} +REST=${ALL#$ARGS} + +REST=${REST#--} +PANDOC_OPTS=${REST:-$PANDOC_OPTS} + +iconv -t utf-8 $ARGS | pandoc $PANDOC_OPTS -w latex -s | iconv -f utf-8 -- cgit v1.2.3