diff options
author | Andrew Dunning <andunning@gmail.com> | 2015-10-22 16:03:09 -0400 |
---|---|---|
committer | Andrew Dunning <andunning@gmail.com> | 2015-10-22 16:03:09 -0400 |
commit | 5481fb08531df17a0098e528455d0785cc0ed832 (patch) | |
tree | 0aa4fe3d73d6933de4d9f8a93757077c62678665 /default.asciidoc | |
parent | 06fe6706f1b0655185248cc0c1ee3d2e187ec07d (diff) | |
download | pandoc-5481fb08531df17a0098e528455d0785cc0ed832.tar.gz |
Fix author, date in AsciiDoc; add keywords, abstract.
AsciiDoctor did not parse previous output.
Diffstat (limited to 'default.asciidoc')
-rw-r--r-- | default.asciidoc | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/default.asciidoc b/default.asciidoc index 3e30ceef8..27215469a 100644 --- a/default.asciidoc +++ b/default.asciidoc @@ -1,16 +1,25 @@ $if(titleblock)$ $title$ -$for(author)$ -:author: $author$ -$endfor$ +$if(author)$ +$for(author)$$author$$sep$; $endfor$ +$endif$ $if(date)$ -:date: $date$ +$date$ +$endif$ +$if(keywords)$ +:keywords: $for(keywords)$$keywords$$sep$, $endfor$ $endif$ $if(toc)$ :toc: $endif$ $endif$ +$if(abstract)$ +[abstract] +== Abstract +$abstract$ + +$endif$ $for(header-includes)$ $header-includes$ |