aboutsummaryrefslogtreecommitdiff
path: root/default.asciidoc
diff options
context:
space:
mode:
authorAndrew Dunning <andunning@gmail.com>2015-10-22 16:03:09 -0400
committerAndrew Dunning <andunning@gmail.com>2015-10-22 16:03:09 -0400
commit5481fb08531df17a0098e528455d0785cc0ed832 (patch)
tree0aa4fe3d73d6933de4d9f8a93757077c62678665 /default.asciidoc
parent06fe6706f1b0655185248cc0c1ee3d2e187ec07d (diff)
downloadpandoc-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.asciidoc17
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$