diff options
author | John MacFarlane <jgm@berkeley.edu> | 2019-07-28 18:55:23 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2019-07-28 19:25:44 -0700 |
commit | 1afea633085186e8007fa67016e68784a58d38dc (patch) | |
tree | ebbab34ec1d6cd379107e060267d300b04143045 | |
parent | b35fae651145482f1218d32dbea5fffff60e0b0b (diff) | |
download | pandoc-1afea633085186e8007fa67016e68784a58d38dc.tar.gz |
Update muse template to handle multiple authors better.
-rw-r--r-- | data/templates/default.muse | 2 | ||||
-rw-r--r-- | test/writer.muse | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/data/templates/default.muse b/data/templates/default.muse index 05534adef..3bae4d00f 100644 --- a/data/templates/default.muse +++ b/data/templates/default.muse @@ -1,5 +1,5 @@ $if(author)$ -#author $author$ +#author $for(author)$$author$$sep$; $endfor$ $endif$ $if(title)$ #title $title$ diff --git a/test/writer.muse b/test/writer.muse index 415882677..d9efdddd5 100644 --- a/test/writer.muse +++ b/test/writer.muse @@ -1,4 +1,4 @@ -#author John MacFarlane, Anonymous +#author John MacFarlane; Anonymous #title Pandoc Test Suite #date July 17, 2006 |