diff options
author | roktas <roktas@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2006-11-13 16:34:07 +0000 |
---|---|---|
committer | roktas <roktas@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2006-11-13 16:34:07 +0000 |
commit | 19486ee0e17b12ed5a0c800c8cd8e43fe3522065 (patch) | |
tree | 5eaab59c602d3d0ac8abd1db09f967f1992cbf0b /latex2markdown | |
parent | 5a66fa030d6ffd09d82b612f2b97bc737ec753a5 (diff) | |
download | pandoc-19486ee0e17b12ed5a0c800c8cd8e43fe3522065.tar.gz |
* Add PANDOC_OPTS support to 'markdown2pdf'.
* Sanitize comand line handling a bit in all wrappers:
+ Correct delimiters syntax should be ' -- '.
+ Print warning for extra arguments which are ignored.
+ Instead of positional arguments use named variables whenever
appropriate.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@97 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'latex2markdown')
-rw-r--r-- | latex2markdown | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/latex2markdown b/latex2markdown index d6a991307..8f935aef5 100644 --- a/latex2markdown +++ b/latex2markdown @@ -22,11 +22,11 @@ for p in pandoc; do done ALL="$*" -ARGS=${ALL%%-- *} -REST=${ALL#$ARGS} +ARGS=${ALL%% -- *} # only the part before ' -- ' delimiters is relevant +set -- $ARGS -REST=${REST#--} +REST=${ALL#$ARGS}; REST=${REST#--} PANDOC_OPTS=${REST:-$PANDOC_OPTS} -iconv -t utf-8 $ARGS | pandoc $PANDOC_OPTS -r latex -w markdown -s | \ +iconv -t utf-8 $* | pandoc $PANDOC_OPTS -r latex -w markdown -s | \ iconv -f utf-8 |