diff options
author | John MacFarlane <jgm@berkeley.edu> | 2016-12-04 21:09:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-04 21:09:16 +0100 |
commit | d4f203657a838e4aa7949e39778accb55cfea303 (patch) | |
tree | 92751965b7fbef8b49067ab40bce0f983a08a88c | |
parent | c5b8f6c8e69b641b2a61ba5b587bed1296e02333 (diff) | |
parent | 631dd23383ced378aa0992976474cd4ea1b5c19c (diff) | |
download | pandoc-d4f203657a838e4aa7949e39778accb55cfea303.tar.gz |
Merge pull request #224 from Wandmalfarbe/patch-1
Keyword definition used wrong separator
-rw-r--r-- | default.latex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/default.latex b/default.latex index 3ff8be2ab..3b80d3cdc 100644 --- a/default.latex +++ b/default.latex @@ -72,7 +72,7 @@ $if(author-meta)$ pdfauthor={$author-meta$}, $endif$ $if(keywords)$ - pdfkeywords={$for(keywords)$$keywords$$sep$; $endfor$}, + pdfkeywords={$for(keywords)$$keywords$$sep$, $endfor$}, $endif$ $if(colorlinks)$ colorlinks=true, |