FooBarWidget-mizuho 0.9.3 → 0.9.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (73) hide show
  1. data/asciidoc/BUGS +3 -3
  2. data/asciidoc/CHANGELOG +112 -63
  3. data/asciidoc/CHANGELOG.txt +50 -0
  4. data/asciidoc/INSTALL +6 -6
  5. data/asciidoc/Makefile.in +21 -5
  6. data/asciidoc/README +3 -3
  7. data/asciidoc/asciidoc.conf +9 -12
  8. data/asciidoc/asciidoc.py +204 -151
  9. data/asciidoc/common.aap +2 -2
  10. data/asciidoc/doc/a2x.1 +4 -3
  11. data/asciidoc/doc/a2x.1.txt +1 -1
  12. data/asciidoc/doc/article.css-embedded.html +13 -12
  13. data/asciidoc/doc/article.html +46 -644
  14. data/asciidoc/doc/article.pdf +0 -0
  15. data/asciidoc/doc/asciidoc.1 +2 -2
  16. data/asciidoc/doc/asciidoc.1.css-embedded.html +14 -13
  17. data/asciidoc/doc/asciidoc.1.css.html +3 -3
  18. data/asciidoc/doc/asciidoc.1.html +3 -3
  19. data/asciidoc/doc/asciidoc.css-embedded.html +238 -225
  20. data/asciidoc/doc/asciidoc.css.html +227 -215
  21. data/asciidoc/doc/asciidoc.dict +10 -1
  22. data/asciidoc/doc/asciidoc.html +181 -164
  23. data/asciidoc/doc/asciidoc.txt +167 -148
  24. data/asciidoc/doc/asciimathml.txt +5 -4
  25. data/asciidoc/doc/book.css-embedded.html +13 -12
  26. data/asciidoc/doc/faq.txt +60 -3
  27. data/asciidoc/doc/music-filter.html +94 -41
  28. data/asciidoc/doc/music-filter.pdf +0 -0
  29. data/asciidoc/doc/source-highlight-filter.html +125 -465
  30. data/asciidoc/doc/source-highlight-filter.pdf +0 -0
  31. data/asciidoc/docbook.conf +8 -2
  32. data/asciidoc/examples/website/CHANGELOG.html +129 -4
  33. data/asciidoc/examples/website/INSTALL.html +6 -6
  34. data/asciidoc/examples/website/README-website.html +3 -3
  35. data/asciidoc/examples/website/README.html +3 -3
  36. data/asciidoc/examples/website/a2x.1.html +4 -4
  37. data/asciidoc/examples/website/asciidoc-docbook-xsl.html +3 -3
  38. data/asciidoc/examples/website/asciidoc-graphviz-sample.txt +1 -0
  39. data/asciidoc/examples/website/downloads.html +7 -7
  40. data/asciidoc/examples/website/faq.html +95 -40
  41. data/asciidoc/examples/website/index.html +34 -13
  42. data/asciidoc/examples/website/index.txt +25 -9
  43. data/asciidoc/examples/website/latex-backend.html +4 -4
  44. data/asciidoc/examples/website/manpage.html +3 -3
  45. data/asciidoc/examples/website/music-filter.html +3 -3
  46. data/asciidoc/examples/website/sample1.png +0 -0
  47. data/asciidoc/examples/website/sample3.png +0 -0
  48. data/asciidoc/examples/website/sample4.png +0 -0
  49. data/asciidoc/examples/website/source-highlight-filter.html +5 -5
  50. data/asciidoc/examples/website/support.html +3 -3
  51. data/asciidoc/examples/website/userguide.html +227 -215
  52. data/asciidoc/examples/website/version9.html +3 -3
  53. data/asciidoc/filters/{code-filter-readme.txt → code/code-filter-readme.txt} +0 -0
  54. data/asciidoc/filters/{code-filter-test.txt → code/code-filter-test.txt} +0 -0
  55. data/asciidoc/filters/{code-filter.conf → code/code-filter.conf} +1 -1
  56. data/asciidoc/filters/{code-filter.py → code/code-filter.py} +0 -0
  57. data/asciidoc/filters/graphviz/asciidoc-graphviz-sample.txt +130 -0
  58. data/asciidoc/filters/graphviz/graphviz-filter.conf +39 -0
  59. data/asciidoc/filters/graphviz/graphviz2png.py +154 -0
  60. data/asciidoc/filters/{music-filter-test.txt → music/music-filter-test.txt} +0 -0
  61. data/asciidoc/filters/{music-filter.conf → music/music-filter.conf} +0 -0
  62. data/asciidoc/filters/{music2png.py → music/music2png.py} +0 -0
  63. data/asciidoc/filters/{source-highlight-filter-test.txt → source/source-highlight-filter-test.txt} +0 -0
  64. data/asciidoc/filters/{source-highlight-filter.conf → source/source-highlight-filter.conf} +2 -1
  65. data/asciidoc/html4.conf +5 -2
  66. data/asciidoc/stylesheets/xhtml11-quirks.css +0 -8
  67. data/asciidoc/stylesheets/xhtml11.css +11 -2
  68. data/asciidoc/vim/syntax/asciidoc.vim +1 -1
  69. data/asciidoc/xhtml11.conf +5 -2
  70. data/lib/mizuho/parser.rb +5 -1
  71. data/mizuho.gemspec +5 -16
  72. data/test/parser_spec.rb +49 -0
  73. metadata +22 -10
data/asciidoc/common.aap CHANGED
@@ -2,8 +2,8 @@
2
2
  # Executed by all main.aap's before anything else.
3
3
  #
4
4
 
5
- _parent.VERS = 8.3.1
6
- _parent.DATE = 14 December 2008
5
+ _parent.VERS = 8.3.3
6
+ _parent.DATE = 2 January 2009
7
7
 
8
8
  all:
9
9
  :pass
data/asciidoc/doc/a2x.1 CHANGED
@@ -1,11 +1,11 @@
1
1
  .\" Title: a2x
2
2
  .\" Author:
3
3
  .\" Generator: DocBook XSL Stylesheets v1.73.2 <http://docbook.sf.net/>
4
- .\" Date: 12/13/2008
4
+ .\" Date: 01/02/2009
5
5
  .\" Manual:
6
6
  .\" Source:
7
7
  .\"
8
- .TH "A2X" "1" "12/13/2008" "" ""
8
+ .TH "A2X" "1" "01/02/2009" "" ""
9
9
  .\" disable hyphenation
10
10
  .nh
11
11
  .\" disable justification (adjust text to left margin only)
@@ -110,7 +110,8 @@ Don\(cqt do anything just print what would have been done\.
110
110
  .PP
111
111
  \fB\-s, \-\-skip\-asciidoc\fR
112
112
  .RS 4
113
- Skip asciidoc execution\. This is useful for converting DocBook XML files not derived from AsciiDoc sources\. Ignored if \-\-format*=\fItext\fR\.
113
+ Skip asciidoc execution\. This is useful for converting DocBook XML files not derived from AsciiDoc sources\. Ignored if
114
+ \fI\-\-format=text\fR\.
114
115
  .RE
115
116
  .PP
116
117
  \fB\-\-stylesheet\fR=\fIPATH\fR
@@ -74,7 +74,7 @@ OPTIONS
74
74
 
75
75
  *-s, --skip-asciidoc*::
76
76
  Skip asciidoc execution. This is useful for converting DocBook XML
77
- files not derived from AsciiDoc sources. Ignored if --format*='text'.
77
+ files not derived from AsciiDoc sources. Ignored if '--format=text'.
78
78
 
79
79
  *--stylesheet*='PATH'::
80
80
  A path (relative to destination HTML files) specifying the
@@ -3,7 +3,7 @@
3
3
  <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
4
4
  <head>
5
5
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
6
- <meta name="generator" content="AsciiDoc 8.3.1" />
6
+ <meta name="generator" content="AsciiDoc 8.3.3" />
7
7
  <title>The Article Title</title>
8
8
  <style type="text/css">
9
9
  /* Debug borders */
@@ -228,12 +228,21 @@ dd > *:first-child {
228
228
  ul, ol {
229
229
  list-style-position: outside;
230
230
  }
231
- div.olist > ol {
231
+ ol.arabic {
232
232
  list-style-type: decimal;
233
233
  }
234
- div.olist2 > ol {
234
+ ol.loweralpha {
235
235
  list-style-type: lower-alpha;
236
236
  }
237
+ ol.upperalpha {
238
+ list-style-type: upper-alpha;
239
+ }
240
+ ol.lowerroman {
241
+ list-style-type: lower-roman;
242
+ }
243
+ ol.upperroman {
244
+ list-style-type: upper-roman;
245
+ }
237
246
 
238
247
  div.compact ul, div.compact ol,
239
248
  div.compact p, div.compact p,
@@ -366,14 +375,6 @@ div.exampleblock-content {
366
375
 
367
376
  /* IE6 sets dynamically generated links as visited. */
368
377
  div#toc a:visited { color: blue; }
369
-
370
- /* Because IE6 child selector is broken. */
371
- div.olist2 ol {
372
- list-style-type: lower-alpha;
373
- }
374
- div.olist2 div.olist ol {
375
- list-style-type: decimal;
376
- }
377
378
  </style>
378
379
  <script type="text/javascript">
379
380
  /*<![CDATA[*/
@@ -594,7 +595,7 @@ A second glossary term
594
595
  <div id="footer">
595
596
  <div id="footer-text">
596
597
  Version 1.0<br />
597
- Last updated 2008-12-13 09:56:49 NZDT
598
+ Last updated 2009-01-02 12:43:47 NZDT
598
599
  </div>
599
600
  </div>
600
601
  </body>
@@ -1,644 +1,46 @@
1
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
2
- "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
3
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
4
- <head>
5
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
6
- <meta name="generator" content="AsciiDoc 8.3.1" />
7
- <title>The Article Title</title>
8
- <style type="text/css">
9
- /* Debug borders */
10
- p, li, dt, dd, div, pre, h1, h2, h3, h4, h5, h6 {
11
- /*
12
- border: 1px solid red;
13
- */
14
- }
15
-
16
- body {
17
- margin: 1em 5% 1em 5%;
18
- }
19
-
20
- a {
21
- color: blue;
22
- text-decoration: underline;
23
- }
24
- a:visited {
25
- color: fuchsia;
26
- }
27
-
28
- em {
29
- font-style: italic;
30
- color: navy;
31
- }
32
-
33
- strong {
34
- font-weight: bold;
35
- color: #083194;
36
- }
37
-
38
- tt {
39
- color: navy;
40
- }
41
-
42
- h1, h2, h3, h4, h5, h6 {
43
- color: #527bbd;
44
- font-family: sans-serif;
45
- margin-top: 1.2em;
46
- margin-bottom: 0.5em;
47
- line-height: 1.3;
48
- }
49
-
50
- h1, h2, h3 {
51
- border-bottom: 2px solid silver;
52
- }
53
- h2 {
54
- padding-top: 0.5em;
55
- }
56
- h3 {
57
- float: left;
58
- }
59
- h3 + * {
60
- clear: left;
61
- }
62
-
63
- div.sectionbody {
64
- font-family: serif;
65
- margin-left: 0;
66
- }
67
-
68
- hr {
69
- border: 1px solid silver;
70
- }
71
-
72
- p {
73
- margin-top: 0.5em;
74
- margin-bottom: 0.5em;
75
- }
76
-
77
- ul, ol, li > p {
78
- margin-top: 0;
79
- }
80
-
81
- pre {
82
- padding: 0;
83
- margin: 0;
84
- }
85
-
86
- span#author {
87
- color: #527bbd;
88
- font-family: sans-serif;
89
- font-weight: bold;
90
- font-size: 1.1em;
91
- }
92
- span#email {
93
- }
94
- span#revision {
95
- font-family: sans-serif;
96
- }
97
-
98
- div#footer {
99
- font-family: sans-serif;
100
- font-size: small;
101
- border-top: 2px solid silver;
102
- padding-top: 0.5em;
103
- margin-top: 4.0em;
104
- }
105
- div#footer-text {
106
- float: left;
107
- padding-bottom: 0.5em;
108
- }
109
- div#footer-badges {
110
- float: right;
111
- padding-bottom: 0.5em;
112
- }
113
-
114
- div#preamble,
115
- div.tableblock, div.imageblock, div.exampleblock, div.verseblock,
116
- div.quoteblock, div.literalblock, div.listingblock, div.sidebarblock,
117
- div.admonitionblock {
118
- margin-right: 10%;
119
- margin-top: 1.5em;
120
- margin-bottom: 1.5em;
121
- }
122
- div.admonitionblock {
123
- margin-top: 2.5em;
124
- margin-bottom: 2.5em;
125
- }
126
-
127
- div.content { /* Block element content. */
128
- padding: 0;
129
- }
130
-
131
- /* Block element titles. */
132
- div.title, caption.title {
133
- color: #527bbd;
134
- font-family: sans-serif;
135
- font-weight: bold;
136
- text-align: left;
137
- margin-top: 1.0em;
138
- margin-bottom: 0.5em;
139
- }
140
- div.title + * {
141
- margin-top: 0;
142
- }
143
-
144
- td div.title:first-child {
145
- margin-top: 0.0em;
146
- }
147
- div.content div.title:first-child {
148
- margin-top: 0.0em;
149
- }
150
- div.content + div.title {
151
- margin-top: 0.0em;
152
- }
153
-
154
- div.sidebarblock > div.content {
155
- background: #ffffee;
156
- border: 1px solid silver;
157
- padding: 0.5em;
158
- }
159
-
160
- div.listingblock {
161
- margin-right: 0%;
162
- }
163
- div.listingblock > div.content {
164
- border: 1px solid silver;
165
- background: #f4f4f4;
166
- padding: 0.5em;
167
- }
168
-
169
- div.quoteblock {
170
- padding-left: 2.0em;
171
- }
172
- div.quoteblock > div.attribution {
173
- padding-top: 0.5em;
174
- text-align: right;
175
- }
176
-
177
- div.verseblock {
178
- padding-left: 2.0em;
179
- }
180
- div.verseblock > div.content {
181
- white-space: pre;
182
- }
183
- div.verseblock > div.attribution {
184
- padding-top: 0.75em;
185
- text-align: left;
186
- }
187
- /* DEPRECATED: Pre version 8.2.7 verse style literal block. */
188
- div.verseblock + div.attribution {
189
- text-align: left;
190
- }
191
-
192
- div.admonitionblock .icon {
193
- vertical-align: top;
194
- font-size: 1.1em;
195
- font-weight: bold;
196
- text-decoration: underline;
197
- color: #527bbd;
198
- padding-right: 0.5em;
199
- }
200
- div.admonitionblock td.content {
201
- padding-left: 0.5em;
202
- border-left: 2px solid silver;
203
- }
204
-
205
- div.exampleblock > div.content {
206
- border-left: 2px solid silver;
207
- padding: 0.5em;
208
- }
209
-
210
- div.imageblock div.content { padding-left: 0; }
211
- div.imageblock img { border: 1px solid silver; }
212
- span.image img { border-style: none; }
213
-
214
- dl {
215
- margin-top: 0.8em;
216
- margin-bottom: 0.8em;
217
- }
218
- dt {
219
- margin-top: 0.5em;
220
- margin-bottom: 0;
221
- font-style: normal;
222
- color: navy;
223
- }
224
- dd > *:first-child {
225
- margin-top: 0.1em;
226
- }
227
-
228
- ul, ol {
229
- list-style-position: outside;
230
- }
231
- div.olist > ol {
232
- list-style-type: decimal;
233
- }
234
- div.olist2 > ol {
235
- list-style-type: lower-alpha;
236
- }
237
-
238
- div.compact ul, div.compact ol,
239
- div.compact p, div.compact p,
240
- div.compact div, div.compact div {
241
- margin-top: 0.1em;
242
- margin-bottom: 0.1em;
243
- }
244
-
245
- div.tableblock > table {
246
- border: 3px solid #527bbd;
247
- }
248
- thead {
249
- font-family: sans-serif;
250
- font-weight: bold;
251
- }
252
- tfoot {
253
- font-weight: bold;
254
- }
255
- td > div.verse {
256
- white-space: pre;
257
- }
258
- p.table {
259
- margin-top: 0;
260
- }
261
- /* Because the table frame attribute is overriden by CSS in most browsers. */
262
- div.tableblock > table[frame="void"] {
263
- border-style: none;
264
- }
265
- div.tableblock > table[frame="hsides"] {
266
- border-left-style: none;
267
- border-right-style: none;
268
- }
269
- div.tableblock > table[frame="vsides"] {
270
- border-top-style: none;
271
- border-bottom-style: none;
272
- }
273
-
274
-
275
- div.hdlist {
276
- margin-top: 0.8em;
277
- margin-bottom: 0.8em;
278
- }
279
- div.hdlist tr {
280
- padding-bottom: 15px;
281
- }
282
- dt.hdlist1.strong, td.hdlist1.strong {
283
- font-weight: bold;
284
- }
285
- td.hdlist1 {
286
- vertical-align: top;
287
- font-style: normal;
288
- padding-right: 0.8em;
289
- color: navy;
290
- }
291
- td.hdlist2 {
292
- vertical-align: top;
293
- }
294
- div.hdlist.compact tr {
295
- margin: 0;
296
- padding-bottom: 0;
297
- }
298
-
299
- @media print {
300
- div#footer-badges { display: none; }
301
- }
302
-
303
- div#toctitle {
304
- color: #527bbd;
305
- font-family: sans-serif;
306
- font-size: 1.1em;
307
- font-weight: bold;
308
- margin-top: 1.0em;
309
- margin-bottom: 0.1em;
310
- }
311
-
312
- div.toclevel1, div.toclevel2, div.toclevel3, div.toclevel4 {
313
- margin-top: 0;
314
- margin-bottom: 0;
315
- }
316
- div.toclevel2 {
317
- margin-left: 2em;
318
- font-size: 0.9em;
319
- }
320
- div.toclevel3 {
321
- margin-left: 4em;
322
- font-size: 0.9em;
323
- }
324
- div.toclevel4 {
325
- margin-left: 6em;
326
- font-size: 0.9em;
327
- }
328
- /* Workarounds for IE6's broken and incomplete CSS2. */
329
-
330
- div.sidebar-content {
331
- background: #ffffee;
332
- border: 1px solid silver;
333
- padding: 0.5em;
334
- }
335
- div.sidebar-title, div.image-title {
336
- color: #527bbd;
337
- font-family: sans-serif;
338
- font-weight: bold;
339
- margin-top: 0.0em;
340
- margin-bottom: 0.5em;
341
- }
342
-
343
- div.listingblock div.content {
344
- border: 1px solid silver;
345
- background: #f4f4f4;
346
- padding: 0.5em;
347
- }
348
-
349
- div.quoteblock-attribution {
350
- padding-top: 0.5em;
351
- text-align: right;
352
- }
353
-
354
- div.verseblock-content {
355
- white-space: pre;
356
- }
357
- div.verseblock-attribution {
358
- padding-top: 0.75em;
359
- text-align: left;
360
- }
361
-
362
- div.exampleblock-content {
363
- border-left: 2px solid silver;
364
- padding-left: 0.5em;
365
- }
366
-
367
- /* IE6 sets dynamically generated links as visited. */
368
- div#toc a:visited { color: blue; }
369
-
370
- /* Because IE6 child selector is broken. */
371
- div.olist2 ol {
372
- list-style-type: lower-alpha;
373
- }
374
- div.olist2 div.olist ol {
375
- list-style-type: decimal;
376
- }
377
- </style>
378
- </head>
379
- <body>
380
- <div id="header">
381
- <h1>The Article Title</h1>
382
- <span id="author">Author's Name</span><br />
383
- <span id="email"><tt>&lt;<a href="mailto:authors@email.address">authors@email.address</a>&gt;</tt></span><br />
384
- <span id="revision">version 1.0,</span>
385
- Dec 2003
386
- </div>
387
- <div id="preamble">
388
- <div class="sectionbody">
389
- <div class="paragraph"><p>This is the optional preamble (an untitled section body). Useful for
390
- writing simple sectionless documents consisting only of a preamble.</p></div>
391
- </div>
392
- </div>
393
- <h2 id="_abstract">Abstract</h2>
394
- <div class="sectionbody">
395
- <div class="paragraph"><p>The optional abstract (one or more paragraphs) goes here.</p></div>
396
- <div class="paragraph"><p>This document is an <em>AsciiDoc</em> article skeleton containing briefly
397
- annotated element placeholders plus a couple of example index entries
398
- and footnotes. The preface, appendix, bibliography, glossary and index
399
- section titles are significant (<em>specialsections</em>).</p></div>
400
- </div>
401
- <h2 id="_the_first_section">The First Section</h2>
402
- <div class="sectionbody">
403
- <div class="paragraph"><p>Article sections start at level 1 and can be nested up to four levels
404
- deep.
405
- <br />[An example footnote.]<br /></p></div>
406
- <div class="paragraph"><p>And now for something completely different: monkeys, lions and
407
- tigers (Bengal and Siberian) using the alternative syntax index
408
- entries.
409
-
410
-
411
-
412
- Note that multi-entry terms generate separate index entries.</p></div>
413
- <div class="paragraph"><p>Here are a couple of image examples: an <span class="image">
414
- <img alt="images/smallnew.png" src="data:image/png;base64,
415
- iVBORw0KGgoAAAANSUhEUgAAABsAAAARCAIAAACjLUBkAAAAAXNSR0IArs4c6QAAAARnQU1BAACx
416
- jwv8YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlz
417
- AAAOwgAADsIBFShKgAAAAKxJREFUOE+tVFsOgDAI08T7n3jJRDGsK0yWZXw5Ukp5edZaj70mjHvt
418
- 2Ev3VJwylnJ5jDhDf8CoUAugpwSgB3ktwafR4xY8WkqrWinEjEu/0QhAT2bUitSQHXP8MFqvu8lY
419
- gKlDjZQGMTilYdUm1mvsGvEWhMsw1UeaErWFNolnnU4GW0nyu8ks7MpoMZtGzUA4a1C6+fGsKZ6O
420
- z58ddTDYx/TGZwD5n2KGBTE3UQbhO1bl15wAAAAASUVORK5CYII=" />
421
- </span>
422
- example inline image followed by an example block image:</p></div>
423
- <div class="imageblock">
424
- <div class="content">
425
- <img alt="Tiger image" title="Tiger image" src="data:image/png;base64,
426
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 9vqeGT4MSE6PbJB/z+43FKbu/jp/IwDWeS92ojAFPyqA/V+Snk3MJARepGFe5ZcNMJd/Bfxnx0Hw
446
- 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
- +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
- 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
- 8I2B9CXjm7ATATIAwC/UJh7MRKyNfhr/FfDDrCatXYHzEzsIwYxvktUyfkHxvZ+hCL934PfxL8L/
450
- 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
- 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
- 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
- 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
- qUW0NgMSvWzirOtq+P5GV+Oz0/ijA/iWFEETV4pfffFwpEblLhXwBUy0dqjzL8Mf3EbXx48OX24R
455
- 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
- 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
- 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
- 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
- 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
- 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
- DvttD77ML+ITji58xg+r7qPPmR/y5+2upHl53jHsjsfTeTJAFz64KhVV+S/Dx/Q98JONsvcNo/cK
462
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- JQBPnKJfpA/wjj7hE/RsAIxJ9c9hsnsE/L75uvdTJaCMyfhhba/gQ3jaB2JP8GheL5E+wg9uDN86
471
- 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
- 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
- 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
- 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
- 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
- beHnNEtnOz4n6z2f0QuSt9/D2H/2BuD8FVHhO/B9ADS9D+2Apjsm4+uAVQkzjjDr8oY4ewOshC8m
477
- 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
- 3uA0IVuFAdJ6lOVNLGjSV7SmuX4DP260SfB+C8pX9/AQ53shHFzdZx8BHWFQc73Gb6kY2z3pTQb2
479
- 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
- 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
- rru7TaDn+CnAHdje7URGeHc+wu9jIrVmGuoOY35yu43K5vU11LnOr16qe34Ovom+9zv6fs0k4Ecf
482
- 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
- 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
- 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
- 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
- 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
- l66rjg/bNsoxrJBWPuEfJ/4pBWwfAbyjPwT6M6osun6M7++OeoD79zzDddHHzQhg56VSQIEWvrS6
488
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- zu+pBQpjZlMApeb1S24VXsVTMLTCVffb4n7m5nTqfhJqgNQJLCorTHK0xvVr40VLHlQ1b0krGP2X
502
- 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
- +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
- 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
- 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
- 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
- /E/mnvGj4BeZKkCsqIh/6YK32thrkDSpid6L1vABbyL+PcTPkgZAGPyRglF149NFQpDLFryN1iJ+
508
- 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
- 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
- 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
- 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
- 8GW2Bn/GpfyqwuIvl0ge8q3fz0unUfBT/Fldvx3Pyn6IsLPJiBdPe8oReJ6Xn9h/yfwt+gX4Mr2x
513
- 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
- 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
- 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
- vUrUxEeBWONfA58sc0OTbXxA38S3pGvV6XNxgX91fLrIL99NaOBTeh0fVt6JD6ck6EWxlfHB0B+2
517
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
540
- m2i9J54AAAAASUVORK5CYII=" />
541
- </div>
542
- <div class="title">Tiger block image</div>
543
- </div>
544
- <div class="paragraph"><p>Followed by an example table:</p></div>
545
- <div class="tableblock">
546
- <table rules="all"
547
- width="60%"
548
- frame="border"
549
- cellspacing="0" cellpadding="4">
550
- <caption class="title">An example table</caption>
551
- <col width="50%" />
552
- <col width="50%" />
553
- <thead valign="top">
554
- <tr>
555
- <th align="left"> Option </th>
556
- <th align="left"> Description</th>
557
- </tr>
558
- </thead>
559
- <tbody valign="top">
560
- <tr>
561
- <td align="left"><p class="table">-a <em>USER GROUP</em></p></td>
562
- <td align="left"><p class="table">Add <em>USER</em> to <em>GROUP</em>.</p></td>
563
- </tr>
564
- <tr>
565
- <td align="left"><p class="table">-R <em>GROUP</em></p></td>
566
- <td align="left"><p class="table">Disables access to <em>GROUP</em>.</p></td>
567
- </tr>
568
- </tbody>
569
- </table>
570
- </div>
571
- <h3 id="X1">Sub-section with Anchor</h3><div style="clear:left"></div>
572
- <div class="paragraph"><p>Sub-section at level 2.</p></div>
573
- <h4 id="_a_nested_sub_section">A Nested Sub-section</h4>
574
- <div class="paragraph"><p>Sub-section at level 3.</p></div>
575
- <h5 id="_yet_another_nested_sub_section">Yet another nested Sub-section</h5>
576
- <div class="paragraph"><p>Sub-section at level 4.</p></div>
577
- <div class="paragraph"><p>This is the maximum sub-section depth supported by the distributed
578
- <em>AsciiDoc</em> configuration.
579
- <br />[A second example footnote.]<br /></p></div>
580
- </div>
581
- <h2 id="_the_second_section">The Second Section</h2>
582
- <div class="sectionbody">
583
- <div class="paragraph"><p>Article sections are at level 1 and can contain sub-sections nested up
584
- to four deep.</p></div>
585
- <div class="paragraph"><p>An example link to anchor at start of the <a href="#X1">first sub-section</a>.</p></div>
586
- <div class="paragraph"><p>An example link to a bibliography entry <a href="#taoup">[taoup]</a>.</p></div>
587
- </div>
588
- <h2 id="_appendix_a_example_appendix">Appendix A: Example Appendix</h2>
589
- <div class="sectionbody">
590
- <div class="paragraph"><p><em>AsciiDoc</em> article appendices are just just article sections with
591
- <em>specialsection</em> titles.</p></div>
592
- <h3 id="_appendix_sub_section">Appendix Sub-section</h3><div style="clear:left"></div>
593
- <div class="paragraph"><p>Appendix sub-section at level 2.</p></div>
594
- </div>
595
- <h2 id="_bibliography">Bibliography</h2>
596
- <div class="sectionbody">
597
- <div class="paragraph"><p>The bibliography list is a style of <em>AsciiDoc</em> bulleted list.</p></div>
598
- <div class="ulist bibliography"><ul>
599
- <li>
600
- <p>
601
- <a id="taoup"></a>[taoup] Eric Steven Raymond. <em>The Art of Unix
602
- Programming</em>. Addison-Wesley. ISBN 0-13-142901-9.
603
- </p>
604
- </li>
605
- <li>
606
- <p>
607
- <a id="walsh-muellner"></a>[walsh-muellner] Norman Walsh &amp; Leonard Muellner.
608
- <em>DocBook - The Definitive Guide</em>. O&#8217;Reilly &amp; Associates. 1999.
609
- ISBN 1-56592-580-7.
610
- </p>
611
- </li>
612
- </ul></div>
613
- </div>
614
- <h2 id="_glossary">Glossary</h2>
615
- <div class="sectionbody">
616
- <div class="paragraph"><p>Glossaries are optional. Glossaries entries are an example of a style
617
- of <em>AsciiDoc</em> labeled lists.</p></div>
618
- <div class="dlist glossary"><dl>
619
- <dt>
620
- A glossary term
621
- </dt>
622
- <dd>
623
- <p>
624
- The corresponding (indented) definition.
625
- </p>
626
- </dd>
627
- <dt>
628
- A second glossary term
629
- </dt>
630
- <dd>
631
- <p>
632
- The corresponding (indented) definition.
633
- </p>
634
- </dd>
635
- </dl></div>
636
- </div>
637
- <div id="footer">
638
- <div id="footer-text">
639
- Version 1.0<br />
640
- Last updated 2008-12-13 10:32:44 NZDT
641
- </div>
642
- </div>
643
- </body>
644
- </html>
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
+ <html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>The Article Title</title><link rel="stylesheet" href="./docbook-xsl.css" type="text/css" /><meta name="generator" content="DocBook XSL Stylesheets V1.73.2" /></head><body><div class="article" lang="en" xml:lang="en"><div class="titlepage"><div><div><h2 class="title"><a id="id2425213"></a>The Article Title</h2></div><div><div class="author"><h3 class="author"><span class="firstname">Author's</span> <span class="surname">Name</span></h3><div class="affiliation"><div class="address"><p><code class="email">&lt;<a class="email" href="mailto:authors@email.address">authors@email.address</a>&gt;</code></p></div></div></div></div><div><div class="revhistory"><table border="1" width="100%" summary="Revision history"><tr><th align="left" valign="top" colspan="3"><b>Revision History</b></th></tr><tr><td align="left">Revision 1.0</td><td align="left">Dec 2003</td><td align="left">AN</td></tr></table></div></div></div><hr /></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="section"><a href="#_the_first_section">1. The First Section</a></span></dt><dd><dl><dt><span class="section"><a href="#X1">1.1. Sub-section with Anchor</a></span></dt></dl></dd><dt><span class="section"><a href="#_the_second_section">2. The Second Section</a></span></dt><dt><span class="appendix"><a href="#_example_appendix">A. Example Appendix</a></span></dt><dd><dl><dt><span class="section"><a href="#_appendix_sub_section">A.1. Appendix Sub-section</a></span></dt></dl></dd><dt><span class="bibliography"><a href="#_bibliography">Bibliography</a></span></dt><dt><span class="glossary"><a href="#_glossary">Glossary</a></span></dt><dt><span class="index"><a href="#_index">Index</a></span></dt></dl></div><p>This is the optional preamble (an untitled section body). Useful for
3
+ writing simple sectionless documents consisting only of a preamble.</p><div class="abstract"><a id="_abstract"></a><p class="title"><b>Abstract</b></p><p>The optional abstract (one or more paragraphs) goes here.</p><p>This document is an <span class="emphasis"><em>AsciiDoc</em></span> article skeleton containing briefly
4
+ annotated element placeholders plus a couple of example index entries
5
+ and footnotes. The preface, appendix, bibliography, glossary and index
6
+ section titles are significant (<span class="emphasis"><em>specialsections</em></span>).</p></div><div class="section" lang="en" xml:lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a id="_the_first_section"></a>1. The First Section</h2></div></div></div><p>Article sections start at level 1 and can be nested up to four levels
7
+ deep.
8
+ <sup>[<a id="id2425488" href="#ftn.id2425488" class="footnote">1</a>]</sup>
9
+ <a id="id2518161" class="indexterm"></a></p><p>And now for something completely different: <a id="id2518171" class="indexterm"></a>monkeys, lions and
10
+ tigers (Bengal and Siberian) using the alternative syntax index
11
+ entries.
12
+ <a id="id2518180" class="indexterm"></a>
13
+ <a id="id2477454" class="indexterm"></a>
14
+ <a id="id2477463" class="indexterm"></a>
15
+ <a id="id2477477" class="indexterm"></a>
16
+ <a id="id2477489" class="indexterm"></a>
17
+ <a id="id2477498" class="indexterm"></a>
18
+ <a id="id2477512" class="indexterm"></a>
19
+ <a id="id2477523" class="indexterm"></a>
20
+ Note that multi-entry terms generate separate index entries.</p><p>Here are a couple of image examples: an <span class="inlinemediaobject"><img src="images/smallnew.png" alt="images/smallnew.png" /></span>
21
+ example inline image followed by an example block image:</p><div class="figure"><a id="id2477554"></a><p class="title"><b>Figure 1. Tiger block image</b></p><div class="figure-contents"><div class="mediaobject"><img src="images/tiger.png" alt="Tiger image" /></div></div></div><br class="figure-break" /><p>Followed by an example table:</p><div class="table"><a id="id2477581"></a><p class="title"><b>Table 1. An example table</b></p><div class="table-contents"><table summary="An example table" cellpadding="4px" style="border-collapse: collapse;border-top: 2px solid #527bbd; border-bottom: 2px solid #527bbd; border-left: 2px solid #527bbd; border-right: 2px solid #527bbd; "><colgroup><col align="left" /><col align="left" /></colgroup><thead valign="top"><tr><th style="border-right: 1px solid ; border-bottom: 1px solid ; " align="left" valign="top"> Option </th><th style="border-bottom: 1px solid ; " align="left" valign="top"> Description</th></tr></thead><tbody valign="top"><tr><td style="border-right: 1px solid ; border-bottom: 1px solid ; " align="left" valign="top"><p>-a <span class="emphasis"><em>USER GROUP</em></span></p></td><td style="border-bottom: 1px solid ; " align="left" valign="top"><p>Add <span class="emphasis"><em>USER</em></span> to <span class="emphasis"><em>GROUP</em></span>.</p></td></tr><tr><td style="border-right: 1px solid ; " align="left" valign="top"><p>-R <span class="emphasis"><em>GROUP</em></span></p></td><td style="" align="left" valign="top"><p>Disables access to <span class="emphasis"><em>GROUP</em></span>.</p></td></tr></tbody></table></div></div><br class="table-break" /><div class="section" lang="en" xml:lang="en"><div class="titlepage"><div><div><h3 class="title"><a id="X1"></a>1.1. Sub-section with Anchor</h3></div></div></div><p>Sub-section at level 2.</p><div class="section" lang="en" xml:lang="en"><div class="titlepage"><div><div><h4 class="title"><a id="_a_nested_sub_section"></a>1.1.1. A Nested Sub-section</h4></div></div></div><p>Sub-section at level 3.</p><div class="section" lang="en" xml:lang="en"><div class="titlepage"><div><div><h5 class="title"><a id="_yet_another_nested_sub_section"></a>1.1.1.1. Yet another nested Sub-section</h5></div></div></div><p>Sub-section at level 4.</p><p>This is the maximum sub-section depth supported by the distributed
22
+ <span class="emphasis"><em>AsciiDoc</em></span> configuration.
23
+ <sup>[<a id="id2477762" href="#ftn.id2477762" class="footnote">2</a>]</sup></p></div></div></div></div><div class="section" lang="en" xml:lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a id="_the_second_section"></a>2. The Second Section</h2></div></div></div><p>Article sections are at level 1 and can contain sub-sections nested up
24
+ to four deep.</p><p>An example link to anchor at start of the <a class="link" href="#X1" title="1.1.&#xA0;Sub-section with Anchor">first sub-section</a>.
25
+ <a id="id2477898" class="indexterm"></a></p><p>An example link to a bibliography entry <a class="xref" href="#taoup">[taoup]</a>.</p></div><div class="appendix" lang="en" xml:lang="en"><h2 class="title" style="clear: both"><a id="_example_appendix"></a>A. Example Appendix</h2><p><span class="emphasis"><em>AsciiDoc</em></span> article appendices are just just article sections with
26
+ <span class="emphasis"><em>specialsection</em></span> titles.</p><div class="section" lang="en" xml:lang="en"><div class="titlepage"><div><div><h3 class="title"><a id="_appendix_sub_section"></a>A.1. Appendix Sub-section</h3></div></div></div><p>Appendix sub-section at level 2.</p></div></div><div class="bibliography"><div class="titlepage"><div><div><h2 class="title"><a id="_bibliography"></a>Bibliography</h2></div></div></div><p>The bibliography list is a style of <span class="emphasis"><em>AsciiDoc</em></span> bulleted list.</p><div class="bibliomixed"><a id="id2478201"></a><p class="bibliomixed">
27
+ <span class="bibliomisc">
28
+ <a id="taoup"></a>[taoup] Eric Steven Raymond. <span class="emphasis"><em>The Art of Unix
29
+ Programming</em></span>. Addison-Wesley. ISBN 0-13-142901-9.
30
+ </span>
31
+ </p></div><div class="bibliomixed"><a id="id2478220"></a><p class="bibliomixed">
32
+ <span class="bibliomisc">
33
+ <a id="walsh-muellner"></a>[walsh-muellner] Norman Walsh &amp; Leonard Muellner.
34
+ <span class="emphasis"><em>DocBook - The Definitive Guide</em></span>. O’Reilly &amp; Associates. 1999.
35
+ ISBN 1-56592-580-7.
36
+ </span>
37
+ </p></div></div><div class="glossary"><div class="titlepage"><div><div><h2 class="title"><a id="_glossary"></a>Glossary</h2></div></div></div><p>Glossaries are optional. Glossaries entries are an example of a style
38
+ of <span class="emphasis"><em>AsciiDoc</em></span> labeled lists.</p><dl><dt>
39
+ A glossary term
40
+ </dt><dd><p>
41
+ The corresponding (indented) definition.
42
+ </p></dd><dt>
43
+ A second glossary term
44
+ </dt><dd><p>
45
+ The corresponding (indented) definition.
46
+ </p></dd></dl></div><div class="index"><div class="titlepage"><div><div><h2 class="title"><a id="_index"></a>Index</h2></div></div></div><div class="index"><div class="indexdiv"><h3>B</h3><dl><dt>Bengal Tiger, <a class="indexterm" href="#_the_first_section">The First Section</a></dt><dt>Big cats</dt><dd><dl><dt>Lions, <a class="indexterm" href="#_the_first_section">The First Section</a></dt><dt>Tigers</dt><dd><dl><dt>Bengal Tiger, <a class="indexterm" href="#_the_first_section">The First Section</a></dt><dt>Siberian Tiger, <a class="indexterm" href="#_the_first_section">The First Section</a></dt></dl></dd></dl></dd></dl></div><div class="indexdiv"><h3>E</h3><dl><dt>Example index entry, <a class="indexterm" href="#_the_first_section">The First Section</a></dt></dl></div><div class="indexdiv"><h3>L</h3><dl><dt>Lions, <a class="indexterm" href="#_the_first_section">The First Section</a></dt></dl></div><div class="indexdiv"><h3>M</h3><dl><dt>monkeys, <a class="indexterm" href="#_the_first_section">The First Section</a></dt></dl></div><div class="indexdiv"><h3>S</h3><dl><dt>Second example index entry, <a class="indexterm" href="#_the_second_section">The Second Section</a></dt><dt>Siberian Tiger, <a class="indexterm" href="#_the_first_section">The First Section</a></dt></dl></div><div class="indexdiv"><h3>T</h3><dl><dt>Tigers</dt><dd><dl><dt>Bengal Tiger, <a class="indexterm" href="#_the_first_section">The First Section</a></dt><dt>Siberian Tiger, <a class="indexterm" href="#_the_first_section">The First Section</a></dt></dl></dd></dl></div></div></div><div class="footnotes"><br /><hr width="100" align="left" /><div class="footnote"><p><sup>[<a id="ftn.id2425488" href="#id2425488" class="simpara">1</a>] </sup>An example footnote.</p></div><div class="footnote"><p><sup>[<a id="ftn.id2477762" href="#id2477762" class="simpara">2</a>] </sup>A second example footnote.</p></div></div></div></body></html>