codeformat

This commit is contained in:
alex 2025-06-15 08:03:23 +01:00
parent 489d3f8d4d
commit bebbe30b50
2 changed files with 975 additions and 856 deletions

File diff suppressed because it is too large Load diff

View file

@ -1,8 +1,4 @@
$if(false)$ $if(false)$ This is a pandoc template and should not be edited. $endif$
This is a pandoc template and should not be edited.
$endif$
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <!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$> <html xmlns="http://www.w3.org/1999/xhtml" $if(lang)$ lang="$lang$" xml:lang="$lang$" $endif$>
<head> <head>
@ -11,16 +7,22 @@ $endif$
<meta name="generator" content="pandoc" /> <meta name="generator" content="pandoc" />
$for(author-meta)$ $for(author-meta)$
<meta name="author" content="$author-meta$" /> <meta name="author" content="$author-meta$" />
$endfor$ $endfor$ $if(date-meta)$
$if(date-meta)$
<meta name="date" content="$date-meta$" /> <meta name="date" content="$date-meta$" />
$endif$ $endif$
<title>$if(title-prefix)$$title-prefix$ - $endif$$pagetitle$</title> <title>$if(title-prefix)$$title-prefix$ - $endif$$pagetitle$</title>
<style type="text/css">code{white-space: pre;}</style> <style type="text/css">
code {
white-space: pre;
}
</style>
$if(quotes)$ $if(quotes)$
<style type="text/css">q { quotes: "“" "”" "" ""; }</style> <style type="text/css">
$endif$ q {
$if(highlighting-css)$ quotes: '“' '”' '' '';
}
</style>
$endif$ $if(highlighting-css)$
<style type="text/css"> <style type="text/css">
$highlighting-css$ $highlighting-css$
</style> </style>
@ -28,19 +30,10 @@ $endif$
<link rel="stylesheet" href="css/iclc.css" $if(html5)$$else$type="text/css" $endif$ /> <link rel="stylesheet" href="css/iclc.css" $if(html5)$$else$type="text/css" $endif$ />
$for(css)$ $for(css)$
<link rel="stylesheet" href="$css$" $if(html5)$$else$type="text/css" $endif$ /> <link rel="stylesheet" href="$css$" $if(html5)$$else$type="text/css" $endif$ />
$endfor$ $endfor$ $if(math)$ $math$ $endif$ $for(header-includes)$ $header-includes$ $endfor$
$if(math)$
$math$
$endif$
$for(header-includes)$
$header-includes$
$endfor$
</head> </head>
<body> <body>
$for(include-before)$ $for(include-before)$ $include-before$ $endfor$ $if(title)$
$include-before$
$endfor$
$if(title)$
<div id="$idprefix$header"> <div id="$idprefix$header">
<h1 class="title">$title$</h1> <h1 class="title">$title$</h1>
$if(subtitle)$ $if(subtitle)$
@ -55,26 +48,16 @@ $if(date)$
<h3 class="date">$date$</h3> <h3 class="date">$date$</h3>
$endif$ $endif$
</div> </div>
$endif$ $endif$ $if(toc)$
$if(toc)$ <div id="$idprefix$TOC">$toc$</div>
<div id="$idprefix$TOC">
$toc$
</div>
$endif$ $endif$
<h2 class="abstract">Abstract</h2> <h2 class="abstract">Abstract</h2>
<div id="abstract"> <div id="abstract">
$if(abstract)$ $if(abstract)$ $abstract$ $else$ Please provide an abstract in the metadata block at the top of your markdown
$abstract$ document. Refer to template.txt for details. $endif$
$else$
Please provide an abstract in the metadata block at the top of your
markdown document. Refer to template.txt for details.
$endif$
</div> </div>
$body$ $body$ $for(include-after)$ $include-after$ $endfor$
$for(include-after)$
$include-after$
$endfor$
</body> </body>
</html> </html>