pandoc/templates/rst.template
fiddlosopher fbef848a3a Use $for$ for header-includes.
Put variables in right order.  We've specified that if they
use -A, -B, -H multiple times, the text appears in the same
order as on the command line.

git-svn-id: https://pandoc.googlecode.com/svn/trunk@1722 788f1e2b-df1e-0410-8736-df70ead52e1b
2009-12-31 01:15:50 +00:00

27 lines
273 B
Text

$if(titleblock)$
$if(title)$
$title$
$endif$
$if(authors)$
$authors$
$endif$
$if(date)$
Date: $date$
$endif$
$endif$
$if(math)$
.. role:: math(raw)
:format: html latex
$endif$
$if(toc)$
.. contents::
$endif$
$for(header-includes)$
$header-includes$
$endfor$
$body$