aboutsummaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
Diffstat (limited to 'templates')
-rw-r--r--templates/context.template4
-rw-r--r--templates/html.template4
-rw-r--r--templates/latex.template4
-rw-r--r--templates/markdown.template4
-rw-r--r--templates/rst.template19
5 files changed, 24 insertions, 11 deletions
diff --git a/templates/context.template b/templates/context.template
index d450634ee..6b9c04a7e 100644
--- a/templates/context.template
+++ b/templates/context.template
@@ -71,9 +71,9 @@ after={\blank[medium]},
\protect
$endif$
-$if(header-includes)$
+$for(header-includes)$
$header-includes$
-$endif$
+$endfor$
$if(title)$
\doctitle{$title$}
diff --git a/templates/html.template b/templates/html.template
index 68cacd568..7f1bd17db 100644
--- a/templates/html.template
+++ b/templates/html.template
@@ -33,9 +33,9 @@ $endif$
$for(css)$
<link rel="stylesheet" href="$css$" type="text/css" />
$endfor$
-$if(header-includes)$
+$for(header-includes)$
$header-includes$
-$endif$
+$endfor$
$if(latexmathml-script)$
$latexmathml-script$
$endif$
diff --git a/templates/latex.template b/templates/latex.template
index fe4af083d..407348b52 100644
--- a/templates/latex.template
+++ b/templates/latex.template
@@ -31,9 +31,9 @@ $if(numbersections)$
$else$
\setcounter{secnumdepth}{0}
$endif$
-$if(header-includes)$
+$for(header-includes)$
$header-includes$
-$endif$
+$endfor$
$if(title)$
\title{$title$}
diff --git a/templates/markdown.template b/templates/markdown.template
index 68fe0eb13..70f1b59b0 100644
--- a/templates/markdown.template
+++ b/templates/markdown.template
@@ -4,10 +4,10 @@ $if(titleblock)$
% $date$
$endif$
-$if(header-includes)$
+$for(header-includes)$
$header-includes$
-$endif$
+$endfor$
$if(toc)$
$toc$
diff --git a/templates/rst.template b/templates/rst.template
index 38e9691d3..abca8d81a 100644
--- a/templates/rst.template
+++ b/templates/rst.template
@@ -1,5 +1,14 @@
$if(titleblock)$
-$titleblock$
+$if(title)$
+$title$
+
+$endif$
+$if(authors)$
+$authors$
+$endif$
+$if(date)$
+Date: $date$
+$endif$
$endif$
$if(math)$
@@ -7,8 +16,12 @@ $if(math)$
:format: html latex
$endif$
-$if(header-includes)$
-$header-includes$
+$if(toc)$
+.. contents::
$endif$
+$for(header-includes)$
+$header-includes$
+
+$endfor$
$body$