-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathwg21.html
More file actions
122 lines (122 loc) · 2.79 KB
/
Copy pathwg21.html
File metadata and controls
122 lines (122 loc) · 2.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="$lang$" xml:lang="$lang$"$if(dir)$ dir="$dir$"$endif$>
<head>
<meta charset="utf-8" />
<meta name="generator" content="mpark/wg21" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
$for(author-meta)$
<meta name="author" content="$author-meta$" />
$endfor$
$if(date-meta)$
<meta name="dcterms.date" content="$date-meta$" />
$endif$
$if(keywords)$
<meta name="keywords" content="$for(keywords)$$keywords$$sep$, $endfor$" />
$endif$
$if(description-meta)$
<meta name="description" content="$description-meta$" />
$endif$
<title>$if(title-prefix)$$title-prefix$ – $endif$$pagetitle$</title>
<style>
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
span.underline{text-decoration: underline;}
div.column{display: inline-block; vertical-align: top; width: 50%;}
div.csl-block{margin-left: 1.5em;}
ul.task-list{list-style: none;}
$if(quotes)$
q { quotes: "“" "”" "‘" "’"; }
$endif$
$if(highlighting-css)$
$highlighting-css$
code.diff {color: #$uccolor$}
code.diff span.va {color: #$addcolor$}
code.diff span.st {color: #$rmcolor$}
$endif$
</style>
$for(css)$
<link rel="stylesheet" href="$css$" />
$endfor$
<link rel="icon" href="$datadir$/favicon.ico" />
$for(header-includes)$
$header-includes$
$endfor$
$if(math)$
$math$
$endif$
<!--[if lt IE 9]>
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
<![endif]-->
</head>
<body>
<div class="wrapper">
$for(include-before)$
$include-before$
$endfor$
$if(title)$
<header id="title-block-header">
<h1 class="title" style="text-align:center">$title$</h1>
$if(subtitle)$
<h3 class="subtitle" style="text-align:center">$subtitle$</h3>
$endif$
<table style="border:none;float:right">
$if(document)$
<tr>
<td>Document #:</td>
<td>$document$</td>
</tr>
$endif$
<tr>
<td>Date:</td>
<td>$date$</td>
</tr>
$if(document)$
<tr>
<td style="vertical-align:top">Project:</td>
<td>Programming Language C++</td>
</tr>
$endif$
$if(audience)$
<tr>
<td style="vertical-align:top">Audience:</td>
<td>
$for(audience)$
$audience$<br>
$endfor$
</td>
</tr>
$endif$
$if(revises)$
<tr>
<td>Revises: </td>
<td>$revises$</td>
</tr>
$endif$
$if(author)$
<tr>
<td style="vertical-align:top">Reply-to:</td>
<td>
$for(author)$
$author.name$<br><$author.email$><br>
$endfor$
</td>
</tr>
$endif$
</table>
</header>
$endif$
<div style="clear:both">
$if(toc)$
<div id="$idprefix$TOC" role="doc-toc">
<h1 id="$idprefix$toctitle">Contents</h1>
$table-of-contents$
</div>
$endif$
$body$
$for(include-after)$
$include-after$
$endfor$
</div>
</div>
</body>
</html>