-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocument.html
More file actions
153 lines (138 loc) · 3.53 KB
/
document.html
File metadata and controls
153 lines (138 loc) · 3.53 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<title>Document Title</title>
<meta name="author" content="John Doe" />
<meta name="date" content="2015-11-10" />
<meta name='identification' content="undefined"/>
<meta name='classification' content="undefined"/>
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.3.0/styles/default.min.css" />
<script src="http://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.3.0/highlight.min.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
<link rel="stylesheet" type="text/css" href="http://typeup.cogneco.com/templates/document/paper.css" />
</head>
<body>
<header><h1>Document Title</h1></header>
<h1>Header Level 1</h1><p>
Paragraph A <em>emphasized text</em> a lot of <a href='http://example.com'>other nonsens</a>. This paragraph spans
several lines and so
it should. And here is <code>a small bit of code</code> and another one with a bit of formula: <math xmlns="http://www.w3.org/1998/Math/MathML" alttext="x^2 + y^2 = z^2">
<msup>
<mi>x</mi>
<mn>2</mn>
</msup>
<mo>+</mo>
<msup>
<mi>y</mi>
<mn>2</mn>
</msup>
<mo>=</mo>
<msup>
<mi>z</mi>
<mn>2</mn>
</msup>
</math>.
</p><p>
Paragraph B
</p><figure>
<pre><code class="c">
for (int i = 0; i < 10; i++)
printf("\n")
</code></pre>
<figcaption>An example of what a code block looks like.
</figcaption>
</figure>
<figure>
<math xmlns="http://www.w3.org/1998/Math/MathML" alttext="x^m + y^m = z^m">
<msup>
<mi>x</mi>
<mi>m</mi>
</msup>
<mo>+</mo>
<msup>
<mi>y</mi>
<mi>m</mi>
</msup>
<mo>=</mo>
<msup>
<mi>z</mi>
<mi>m</mi>
</msup>
</math>
<figcaption>A formula block with a caption.
</figcaption>
</figure>
<figure>
<pre><code class="">
A code block without language specifier.
</code></pre>
<figcaption>A code block without any language specifier.
</figcaption>
</figure>
<h2>Header Level 2</h2><p>
Paragraph C
</p><dl>
<dt>Alpha</dt>
<dd>Definition A</dd>
<dd>Definition 1</dd>
<dt>Beta</dt>
<dd>Definition B</dd>
</dl><p>
Paragraph D
</p><figure>
<img src='https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/Polygon_types.svg/300px-Polygon_types.svg.png' class='' />
<figcaption>An example of the different definitions of <em>shape</em>. The two triangles on the left are congruent, while the third is similar to them. The last triangle is neither <a href='https://en.wikipedia.org/wiki/Similarity_(geometry)'>similar</a> nor congruent to any of the others, but it is homeomorphic.
</figcaption>
</figure>
<h3>Header Level 3</h3><p>
Paragraph E
</p><p>
Paragraph F
</p><figure>
<video controls class=''>
<source src='http://www.sample-videos.com/video/mp4/720/big_buck_bunny_720p_1mb.mp4' type='video/mp4'>
</video>
<figcaption>This is a sample of embedded video.
</figcaption>
</figure>
<section class="chapter">
<h1>First Header in New Chapter</h1><p>
Another paragraph.
</p><section class="section">
<p>
And a paragraph within a section.
</p>
</section><section class="section">
<p>
Another section.
</p>
</section>
</section><section class="chapter">
<p>
Another Chapter
</p><!-- begin import from ./subdocument -->
<h1>Header in subdocument</h1><p>
This is the paragraph imported from the subdocument.
</p>
<!-- end import from ./subdocument --><h1>Table</h1><table class="tr2">
<tr>
<th>
Header 1
</th><th>
Header 2
</th>
</tr><tr>
<td>
Cell 1
</td><td>
Cell 2
</td>
</tr>
<caption>This is a table with a caption.
</caption>
</table>
</table>
</section>
</body>
</html>