pandoc/default.asciidoc
Andrew Dunning 5481fb0853 Fix author, date in AsciiDoc; add keywords, abstract.
AsciiDoctor did not parse previous output.
2015-10-22 16:03:09 -04:00

35 lines
429 B
Text

$if(titleblock)$
$title$
$if(author)$
$for(author)$$author$$sep$; $endfor$
$endif$
$if(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$
$endfor$
$for(include-before)$
$include-before$
$endfor$
$body$
$for(include-after)$
$include-after$
$endfor$