diff options
author | Alexander Krotov <ilabdsf@gmail.com> | 2017-03-10 13:16:27 +0400 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-03-10 10:16:27 +0100 |
commit | d037c5019d51b9fc64690f5e73158c1dd683012b (patch) | |
tree | 8127bde97d30278f53d99de32c1e568c28e1320e /data | |
parent | ebb2acb89053eca6063ad3b99a3b83cf80d09bca (diff) | |
download | pandoc-d037c5019d51b9fc64690f5e73158c1dd683012b.tar.gz |
Add Muse writer (#3489)
* Add Muse writer
* Advertise new Muse writer
* Muse writer: add regressions tests
Diffstat (limited to 'data')
-rw-r--r-- | data/templates/default.muse | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/data/templates/default.muse b/data/templates/default.muse new file mode 100644 index 000000000..05534adef --- /dev/null +++ b/data/templates/default.muse @@ -0,0 +1,44 @@ +$if(author)$ +#author $author$ +$endif$ +$if(title)$ +#title $title$ +$endif$ +$if(lang)$ +#lang $lang$ +$endif$ +$if(LISTtitle)$ +#LISTtitle $LISTtitle$ +$endif$ +$if(subtitle)$ +#subtitle $subtitle$ +$endif$ +$if(SORTauthors)$ +#SORTauthors $SORTauthors$ +$endif$ +$if(SORTtopics)$ +#SORTtopics $SORTtopics$ +$endif$ +$if(date)$ +#date $date$ +$endif$ +$if(notes)$ +#notes $notes$ +$endif$ +$if(source)$ +#source $source$ +$endif$ + +$for(header-includes)$ +$header-includes$ + +$endfor$ +$for(include-before)$ +$include-before$ + +$endfor$ +$body$ +$for(include-after)$ + +$include-after$ +$endfor$ |