aboutsummaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2010-07-13 19:30:10 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2010-07-13 19:30:10 -0700
commita59a14190686ceab44e8dd2ccb7d061f281f929f (patch)
treede5733079a2bfd81ecf1863157c9dda23f45d637 /templates
parent71b4700669162ea904a78c80d4f236d4ca13303f (diff)
downloadpandoc-a59a14190686ceab44e8dd2ccb7d061f281f929f.tar.gz
Put insert-before text before the title h1 in HTML.
+ This is the documented behavior; the insert-before text comes after the <body> tag. + Resolves Issue #241.
Diffstat (limited to 'templates')
-rw-r--r--templates/html.template6
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/html.template b/templates/html.template
index 820279939..1d07a2cfb 100644
--- a/templates/html.template
+++ b/templates/html.template
@@ -41,12 +41,12 @@ $for(header-includes)$
$endfor$
</head>
<body>
-$if(title)$
-<h1 class="title">$title$</h1>
-$endif$
$for(include-before)$
$include-before$
$endfor$
+$if(title)$
+<h1 class="title">$title$</h1>
+$endif$
$if(toc)$
$toc$
$endif$