e8ad4ba43c
+ Added writerHtml5 writer option. + Added --html5 option. + Added support for lang in html tag (so you can do 'pandoc -s --V lang=en', for example). + Updated html template with conditionals for HTML5. + When HTML5 selected, use <header> tag around title in document, and use <section> tags instead of <div>s if --section-divs specified.
58 lines
1.2 KiB
Text
58 lines
1.2 KiB
Text
$if(html5)$
|
|
<!DOCTYPE html>
|
|
<html$if(lang)$ lang="$lang$"$endif$>
|
|
$else$
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml"$if(lang)$ lang="$lang$" xml:lang="$lang$"$endif$>
|
|
$endif$
|
|
<head>
|
|
<title>$if(title-prefix)$$title-prefix$ - $endif$$if(pagetitle)$$pagetitle$$endif$</title>
|
|
$if(html5)$
|
|
<meta charset="utf-8" />
|
|
$else$
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
$endif$
|
|
<meta name="generator" content="pandoc" />
|
|
$for(author)$
|
|
<meta name="author" content="$author$" />
|
|
$endfor$
|
|
$if(date)$
|
|
<meta name="date" content="$date$" />
|
|
$endif$
|
|
$if(highlighting-css)$
|
|
<style type="text/css">
|
|
$highlighting-css$
|
|
</style>
|
|
$endif$
|
|
$for(css)$
|
|
<link rel="stylesheet" href="$css$" $if(html5)$$else$type="text/css" $endif$/>
|
|
$endfor$
|
|
$if(math)$
|
|
$math$
|
|
$endif$
|
|
$for(header-includes)$
|
|
$header-includes$
|
|
$endfor$
|
|
</head>
|
|
<body>
|
|
$for(include-before)$
|
|
$include-before$
|
|
$endfor$
|
|
$if(title)$
|
|
$if(html5)$
|
|
<header>
|
|
$endif$
|
|
<h1 class="title">$title$</h1>
|
|
$if(html5)$
|
|
</header>
|
|
$endif$
|
|
$endif$
|
|
$if(toc)$
|
|
$toc$
|
|
$endif$
|
|
$body$
|
|
$for(include-after)$
|
|
$include-after$
|
|
$endfor$
|
|
</body>
|
|
</html>
|