-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
646 lines (537 loc) · 19.2 KB
/
index.html
File metadata and controls
646 lines (537 loc) · 19.2 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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>index</title>
<meta name="generator" content="Zim 0.73.2">
<meta name="viewport" content="width=device-width">
<style>
nav[data-toggle="toc"] {
top: 15px;
font-size: x-small;
}
/* small screens */
@media (max-width: 768px) {
/* override stickyness so that the navigation does not follow scrolling */
nav[data-toggle="toc"] {
margin-bottom: 42px;
position: static;
}
/* alternatively, if you *do* want the second-level navigation to be shown (as seen on this page on mobile), use this */
nav[data-toggle='toc'] .nav .nav {
display: block;
}
}
button {
background-color: #F3F3F3;
color: black;
border: 1px solid #003399;
}
button:hover {
background-color: white;
}
body, html {
height:100%;
font-family: "Courier New", Courier, monospace !important;
font-size: large;
line-height:1.5em;
background-color: white;
text-rendering:geometricPrecision;
margin:0;
padding:0;
}
.wrapper {
height:100%;
position:relative;
}
#navigation {
background-color:#F3F3F3;
display:block;
padding-right:5px;
position:relative;
float:left;
min-height:100%;
}
#content {
float:left;
display:inline-block;
position:absolute;
}
#navigation ul {
margin-top:0;
margin-bottom:0;
padding-left:10px;
}
#navigation li {
list-style-type:none;
}
#navigation a {
text-decoration:none;
color:gray;
}
#navigation strong {
color:#4E9A06;
font-weight:400;
}
#navigation a:hover {
text-decoration:underline;
}
#content h1:nth-child(1) {
margin-top:0;
}
h1,h2,h3,h4,h5,h6 {
color:#008000;
font-weight:300;
margin-bottom: 0;
}
p {
margin-top: 0;
}
#content a {
color:#003399;
}
#content a {
text-decoration: none;
}
#content a:hover {
text-decoration: underline;
}
#content a:active {
text-decoration: underline;
}
#content strike {
color: grey;
}
#content u {
text-decoration: none;
background-color: yellow;
}
#content tt {
font-family: "Courier New", Courier, monospace !important;
background-color: black;
color: white;
}
#content pre {
font-family: "Courier New", Courier, monospace !important;
background-color: black;
color: white;
margin-left: 20px;
}
.backlinks {
color:gray;
}
hr.footnotes {
width: 20%;
margin-left: 0;
}
@media print{
#navigation{
background-color:#FFF;
}
}
span.zim-tag {
color: #003399;
}
div.zim-object {
border-style:solid;
border-width:1px;
font-size: large;
}
.checked-box {list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAANOgAADMQBiN+4gQAAAAd0SU1FB9gKGQ8sMEGsKGkAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVBXgQ4XAAAEBUlEQVRIx62V22tdRRTGf7Nn73P2ybntnNOe3NqkPTGgLTVUUZF6QatSLOKTPgqCIqLgQ0H/A1sQQbBYCBb1QfAxiC8tSO1FqHkwJVKtjdTGNraUmObsc9nXmfGh7cGYpM1D5nHWzPetteZb3wg2eB2YqYm4zSadsMtoboiNBH/3TE0awx6j+MRoxoTg/IYRvP19TQrJS0bzhdHGSyKFkLTtjSKwMjyiEz43ynhtP6bdjBCWyFobAf7eT7VhNF/q1FRbjYjmUohlCVPwnB+6FUxMTJipqSmUUhhjEGKd3bMT4ks/Y6oLBK2Yth8hHYtCJXOix7Nf7xLMzc0xOzvLzp078TyPNE3viW3QJPXzhNWbxFFKHCmMhoLn/FHodd48vGfhapdAacXQlkFK5dL6wIUm6fuTZPuvqDQhaMUYYyiVyuQr6rXDexYuAdi3tSv1ZJNs/R/CaszzT+1na88uXFnCEnJVgivBNN8uTJKmHQI/ptOOcXNZzMz9mOqFs90OHpipWcYwlo5P4ebnuOkrvr5wgrH+h3im7y36MzuwRXYZeKha/OhP0EkadFoxQSdGSotedR/+XwMc2XvKdNUFOFqZx6LKZWIiwjgkikNmLp/hm8sH+K1zjFTHXfBYdTi+eJArzXM0GxFxoBDCopLvo/fqEwi1XPkWkGqjFo2TgB1jOYZUKZTS/D1/ncmLh7jon0IbRWoiTi59ymzzJEEQE3cStNZsGxqlfPE57MBbOR8fP3hDGalOO9fq2DlBvmZw8xa2IxACGn6TydlD/O6f5OzSV/zif0cYhLQaEXGkKBbz7Ov/AOlXV1cxgBJRI3fuSTrpTawt18kWIZN1CFuaONI0w0WOXfsI43YIggh/KUSlhqxrMz74AkOZcWBm9QkH+Gw8NDLuITi+m0yzhluSyJzBLcpblUhFxywSRAEtPwQjsKVN30CNh0uvYuOubSHLtN3J0TO1j0pmBNuFbFWRK0gyPRZpktL2I5JQkclKakNlnh54g6ocvevUr/Ai2a7wineEkcJupA3S1Wg0nVZM2E6wbEF5U5G9Q++wI7sfR7h3N8HVNstykBfzH+KJEZwiWD0aIwxCgJ0R1Mu7GXOeJSuK93bZtQIle4D9pUNU5DC5jEsu55AvZakM5NicGyEj8uuz8bUCQgj67QfY671P3vEoeC69gy695U1U7NG7XV0pUwBjDJa1/JJlWWxzHuflzQe5FJ/GsgUVuZ2t8lEkTvfc0aNHb72flBhjVicQQqCUuvM3/M+WDVguWBrMVdDXEGZlBVEUrVCU9d9s5+fnaTQa2PZyPxEIhJaI1EEoZwX4ncynp6fXrmB4eJjR0VFarRbNZnP9P9rt9gohqNVq1Ov1ZbF/AZGev3hLJ2/zAAAAAElFTkSuQmCC)}
.xchecked-box {list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAANOgAADMQBiN+4gQAAAAd0SU1FB9gKGQ8bDYnDxEwAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVBXgQ4XAAAEK0lEQVRIx9WVS2hTWRjHf/eR3CY1nbxMH2YiZRQS6qO13YlMVxY3SnVcuNIBFezGpSADLoQqLu1sHJCqdCFSXFpw4YOCSH3BtFqttTNamabX3DS5bfO6uffMoglja3RGcDMHzuac7/z/53++//cd+L8P6VuCPQYZ8ADNgBd4J31DcDcQs+GnHByRocEDv0kfBSjAOlYCs11Q+gpwDegS8LMJ+3QIK0ATzEhV8Odnz5bzw8P4dJ25aJQ/WlvJ1df/K7hSLtOcTNI+Pk69rpMTgqIQhCDvh1/VSpw79+gRrRMTmLZNezLJJsPg+a5dmOEwQlFqg1sWG16/Jv7sGWXDwBACFQjC9HcwIMONKkGp4PGAJGEDS0IQmZlhnWnye3c3eiyGo6qr3WHbrJ+dJf7gAXI6zSIr72T7/fgzmT4FHnTBsgrQBfYvTU0km5vxz86iADnAm0rRPTWFt7cXZccOJJcLAGHb2K9ekT93jmwmwwdAAFpjI6Ntbfxw5879ag7l6o1sr5eHHR3IsRgeQK/M4sQE+YEB7JcvEY6zAj45SWFgAPPxYwzHoQxIkQjTPT0kIxE+Noj8sexFn4/xnh58iQTeSpHkHAdrbIzi0BCOrmNPTpK/eJHM3bt8sCyKQCiR4NWePWSiUZw1+ZLXJm4pFKLhzBlCsRh2RUXacVgeGaF47RrL58+zcP8+RrmMkCQinZ1EL1zAjERqmkH+tLYl1G3bCJw4QUjT0IA0MJfLMX/5MqmHD0nZNiUgtGULG/r7ccXjINWuWbnmqsuFu7sb/4EDNLlcBIEioNs2KUAFGmMxmk6dQm1tRZI+3xBqEkiShBQOox05Ql1nJ26gvuIUAWiKQnj/ftStW5Fk+YuF+NldsbBA4cYN9KdPmaso8Fc62ZJtk7l1C2t0FGdxESHE1xE4hkHh6lX0oSHSpRIewC/LrPf7CSgKNpCamkI/fZr8pUuIZBIcpyaBunahPp1mub+fDyMjGKUSChCsq6Nh717q9u2jbnSU0uAgRrFIwTThyhUCqRS+hgZKLS1fJvDm87SNjZGcnsYUAjcQ8vsJ9/Xh7u1FDgRQN20iks3iDA+zZFmYhQLqzZtsj8WY3L0baY2Sf55ICCKpFHUzM2SEQAJCHg+hY8fQDh5EDgRWDoRC1J88SePRo2geD0XAcBy8b98Sv3ePYDZbbf2rFQjLIphMsmDbaEBQVQkePox26BCSz7e6i4bDrDt+nGYhmBscpFAskheC4Js3bPR4qHphFYEnlcI7P4/jdqNpGu8TCe4oCsXr1z//F2ga3+/cSfTJE0qmSVYIsKzaOZDcbjKyzFIiwfvt21kMBLA07YsetzWNd+3tLLW0sH5igvT8PH9Go/z44kX+E4LGjg7GDYOcy4XlOEgLC//5P/5LCFzxOPLmzWyIx+m6fduu7v0NVGqyTSycKksAAAAASUVORK5CYII=)}
.unchecked-box {list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAANOgAADMQBiN+4gQAAAAd0SU1FB9gKGQ8qAt8h3m8AAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVBXgQ4XAAAA60lEQVRIx+2VsQqDMBRF70sCLg5OLoKgjk7+lJ/hh+STXBwcnRz8ArMEkrxOFktbaC3tULzTg5e8k5vADXDq70VbobXmvu/hvQczg4heHrJfXxQFuq67blZbMc8zpmlCXddIkgTOuZcBUko45zCOI6y1Nz2xFSEEZFmGOI7fGg4A3nsQEZqmuXOu9jallACAtm3fvmutNaIoAjM/dkBECCF89KCbk4eAb+kEnIAT8EsAM0OIz3hSyrssUvss8t5fg+uIrLXPs0gIgWVZYIyBUurQyYdheO4gz3NUVQVjDNZ1PfSjpWmKsixvehfB9GBZ3NndrgAAAABJRU5ErkJggg==)}
.migrated-box {list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABGdBTUEAALGPC/xhBQAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAANOgAADMQBiN+4gQAAAAd0SU1FB+AKHREFA8vJSnkAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVBXgQ4XAAAC1klEQVRIx+2VT0hUURTGf/e958w4Tc3TYowMw1GyEgwr1MqsFmbZIrIWQZsWJUjbdoHQpl3Qps0swnCRECQFYkR/TC1iKkqmfzAKTo2Vf8hoRsfR995tkRMT87RRWkUHHhy495zvnvvu933wP/75EKkkEAjIYDCIaZpIKRFCZN0kfX9xcTGtra2/irVUEolECIfDlJeXo+s6hmFkDaCqKoZhEAqFSCaTv60pqcSyLAoLC/F4PEtqDmCaJkIIKisrMybX0sdUVRWA5ubmPzdNjjI1cpXkZC/O1fV03PXgdDqRUtpPIITAsqxsDz0Z/3CZQv8uqo4N4C8/Tp2/DdM0MiZQlvk41OTkI/LW1SGtCVb5drD3eCc71wcA+VcAHA5vDd8+3UGakxiJV7i9pdQevU5T1R35pJ3MV5QW1pf+0kWBheJ2SWua8EQXZXsu4fVVYEz1sEKvof5EuxjoPvzpcRvrdp9C2gGMx6cpOHBmbImMesds7BZubwMVDTfXDnQ3vQfK7AC8wLfExMX5whyQc3q2OEnjGm5vE76SQxsfBLr77a7CNf+n0r/l6sSMtsBSnurckiIILCobAtVZhpF4gZF4jubaymj4Ch/fd380LE7bAnjc0NPxk2yqpmEuwGxF0ag+0k5uTpzZeBeaazvj0We8fXojainsb2xh2BZgbe0gSIllzSIUh63wfQ6dZ/O2fbjcKlOj58jJ3cVENESw5yErc9nf2MLQ4jwQAkV1Lqiq37/cZ9WaahJjF9AcmxiPDhLs7ePe23oOnmUwg2hSShQle96tKDjA2HAniusgo9FxnvY9Jxw7RWzGYy92QghM00x5g53qp9sHmtB58/o2umOI2NwGolMnMYUHIb7aAyiKwsjICLqu2/qBEIKUUAohMaSHSLyBSMoPTINQ6CX5+fn2AEVFRZSUlBCPx4nFYhl3L4RESjF/GEgX3pSj+Xw+/H7/b3U/AEOZFnp7O5+5AAAAAElFTkSuQmCC)}
ul {list-style-image: none}
/* ul rule needed to reset style for sub-bullets */
</style>
</head>
<body data-spy="scroll" data-target="#toc"></body>
<div class="wrapper">
<div id="content">
<div class="container">
<div class="row">
<!-- sidebar, which will move to the top on a small screen -->
<div class="col-sm-4">
<nav id="toc" data-toggle="toc" class="sticky-top">
<button onclick="myFunction()"> ↔ Toggle page list</button>
<div id="navigation"> <ul>
<li><b>index</b>
<ul>
<li><a href="./index_files/level1a.html" title="level1a" class="page">level1a</a></li>
<li><a href="./index_files/level1b.html" title="level1b" class="page">level1b</a></li>
</ul></li>
</ul>
</div>
</nav>
</div>
<!-- main content area -->
<div class="col-sm-8">
<h1>index <a name='index'></a></h1>
<p>
Created Tuesday 26 May 2020
</p>
<br>
<p>
<ul>
<li class="unchecked-box">clean this page up with better names, images, make it the only thing in the test, then submit as image in github</li>
</ul>
</p>
<p>
<ul>
<li class="unchecked-box">Delete this page, since it's just for debugging and developing converting to vimwiki</li>
</ul>
</p>
<p>
<a href="./index_files/level1a.html" title="+level1a" class="page">+level1a</a><br>
<a href="./index_files/level1a/level2.html" title="+level1a:level2" class="page">+level1a:level2</a><br>
<a href="./index_files/level1a/level2/level3a.html" title="+level1a:level2:level3a" class="page">+level1a:level2:level3a</a> and <a href="./index_files/level1a/level2/level3a.html" title="+level1a:level2:level3a" class="page">+level1a:level2:level3a</a><br>
<a href="./index_files/level1a/level2/level3a.html" title="+level1a:level2:level3a" class="page">+level1a:level2:level3a</a> and <a href="./index_files/level1a/level2/level3a.html" title="+level1a:level2:level3a" class="page">+level1a:level2:level3a</a><br>
<a href="./index_files/level1a/level2/level3a/level4a.html" title="+level1a:level2:level3a:level4a" class="page">+level1a:level2:level3a:level4a</a><br>
<a href="./index_files/level1a/level2/level3a/level4b.html" title="+level1a:level2:level3a:level4b" class="page">+level1a:level2:level3a:level4b</a>
</p>
<p>
<a href="./index_files/level1b.html" title="+level1b" class="page">+level1b</a><br>
<a href="./index_files/level1b/level2.html" title="+level1b:level2" class="page">+level1b:level2</a>
</p>
<p>
____________________________________________________
</p>
<p>
<tt>j</tt> and <tt>i</tt> needs to be locally greedy, and make sure it doesn't break the rest!
</p>
<p>
<b>aoeu</b> and <b>aoeu</b><br>
<i>aoeu</i> and <i>aoeu</i><br>
<u>aoeu</u> and <u>aoeu</u><br>
<s>aoeu</s> and <s>aoeu</s><br>
<b>aoeu</b><br>
ao<sub>eu</sub>hhHH and ao<sub>u</sub>hhHH<br>
a<sup>ou</sup>e and a<sup>o</sup>eoeu<br>
oeau<br>
<u>underline</u> and <u>underline</u>
</p>
<p>
<tt>verbaitm</tt><br>
<tt>verbaitm</tt>
</p>
<p>
more stuff
</p>
<pre>
verbatim block
oaeu
oaeu
</pre>
<p>
In-page:<br>
<img src="./index_files/level1.png">
</p>
<p>
with other | image thing<br>
<img src="./index_files/level1.png" alt="image">
</p>
<p>
double image thing<br>
<img src="./index_files/level1.png" alt="image"> and <img src="./index_files/level1.png" alt="image">
</p>
<p>
sized:<br>
<img src="./index_files/level1.png" width="500">
</p>
<p>
sized and image thing<br>
<img src="./index_files/level1.png" alt="image" width="500">
</p>
<p>
sized and image and double<br>
<img src="./index_files/level1.png" alt="image" width="500"> and <img src="./index_files/level1.png" alt="image" width="500">
</p>
<p>
A double here:<br>
<img src="./index_files/level1.png"> and <img src="./index_files/level1.png">
</p>
<br>
<p>
double sized:<br>
<img src="./index_files/level1.png" width="500"> and <img src="./index_files/level1.png" width="500">
</p>
<br>
<p>
down:<br>
<img src="./index_files/level1a/level2.png">
</p>
<p>
down more<br>
<img src="./index_files/level1a/level2/level3.png">
</p>
<p>
here<br>
<a href="./index_files/thing.py" title="./thing.py" class="file">./thing.py</a>
</p>
<p>
<a href="./index_files/thing.py" title="./thing.py" class="file">./thing.py</a> and <a href="./index_files/thing.py" title="./thing.py" class="file">./thing.py</a>
</p>
<p>
down several<br>
<a href="./index_files/level1a/level2/thingdeep.py" title="./level1a/level2/thingdeep.py" class="file">./level1a/level2/thingdeep.py</a>
</p>
<p>
<a href="./index_files/level1a/level2/thingdeep.py" title="./level1a/level2/thingdeep.py" class="file">./level1a/level2/thingdeep.py</a> and <a href="./index_files/level1a/level2/thingdeep.py" title="./level1a/level2/thingdeep.py" class="file">./level1a/level2/thingdeep.py</a>
</p>
<br>
<p>
# pound sign outside of thing
</p>
<p>
Codeblock
</p>
<div class="zim-object">
<pre><code class="python">print("hey")
'''
a python string that should not be deleted
'''
print('there')
if 1:
print("one")
# this should not get messed with
[[1:3]]
[[page/subpage:whatevershouldstaythesame]]
</code></pre>
</div>
<br>
<br>
<p>
<ul>
<li>oeu</li>
<li>eou</li>
<li>oeu</li>
<li>eu</li>
</ul>
</p>
<p>
<ol type="a" start="1">
<li>oeu</li>
<li>eu</li>
<li>e</li>
<li>u</li>
</ol>
</p>
<p>
<ol type="A" start="1">
<li>tnsh</li>
<li>ntsh</li>
<li>hnts</li>
<li>hnt</li>
</ol>
</p>
<h1>h1</h1>
<br>
<h2>h2</h2>
<br>
<h3>h3</h3>
<br>
<h4>h4</h4>
<br>
<h5>h5</h5>
<br>
<p>
h6 (does not exist)
</p>
<h1>h1a</h1>
<br>
<h2>h2a</h2>
<br>
<h3>h3a</h3>
<br>
<h4>h4a</h4>
<br>
<h5>h5a</h5>
<br>
<p>
h6 (does not exist)
</p>
<table>
<thead><tr>
<th align="left">aoeu</th>
<th align="right">ueu</th>
<th align="left">thnoqj</th>
<th align="left"> </th>
<th align="center">uteuh</th>
</tr></thead>
<tr>
<td align="left">aoeun</td>
<td align="right">u</td>
<td align="left">eu</td>
<td align="left"> </td>
<td align="center">eou</td>
</tr>
<tr>
<td align="left">eu</td>
<td align="right"> </td>
<td align="left"> </td>
<td align="left">oeu</td>
<td align="center"> </td>
</tr>
<tr>
<td align="left">ue</td>
<td align="right"> </td>
<td align="left"> </td>
<td align="left"> </td>
<td align="center"> </td>
</tr>
<tr>
<td align="left"> </td>
<td align="right"> </td>
<td align="left"> </td>
<td align="left"> </td>
<td align="center"> </td>
</tr>
</table>
<br>
<p>
<img src="./index_files/equation.png">
</p>
<br>
<p>
A double (does it show?)<br>
<img src="./index_files/equation.png"> and <img src="./index_files/equation002.png">
</p>
<p>
<img src="./index_files/equation001.png"> is somothenig
</p>
<p>
A double (does it show?)<br>
is sometnh <img src="./index_files/equation002.png"> is sometnh <img src="./index_files/equation.png">
</p>
<p>
A double (does it show?)<br>
<ul>
<li><img src="./index_files/equation003.png"></li>
</ul>
is sometnh <img src="./index_files/equation001.png">
</p>
<p>
<ul>
<li class="unchecked-box">not done
<ul>
<li class="unchecked-box">subnotdone
<ul>
<li class="unchecked-box">subnotdone</li>
<li class="checked-box">subdonedone</li>
</ul>
</li>
<li class="checked-box">subdonedone
<ul>
<li class="unchecked-box">subnotdone</li>
<li class="checked-box">subdonedone</li>
</ul></li>
</ul>
</li>
<li class="checked-box">done
<ul>
<li class="unchecked-box">subnotdone
<ul>
<li class="unchecked-box">subnotdone</li>
<li class="checked-box">subdonedone</li>
</ul>
</li>
<li class="checked-box">subdonedone
<ul>
<li class="unchecked-box">subnotdone</li>
<li class="checked-box">subdonedone</li>
</ul></li>
</ul>
</li>
<li class="xchecked-box">canceled
<ul>
<li class="unchecked-box">subnotdone
<ul>
<li class="unchecked-box">subnotdone</li>
<li class="checked-box">subdonedone</li>
</ul>
</li>
<li class="checked-box">subdonedone
<ul>
<li class="unchecked-box">subnotdone</li>
<li class="checked-box">subdonedone</li>
</ul></li>
</ul>
</li>
<li class="unchecked-box">improtant !!!</li>
<li class="unchecked-box">kind of important !!</li>
<li class="unchecked-box">meh !</li>
<li class="unchecked-box">improtant!!!</li>
<li class="unchecked-box">kind of important!!</li>
<li class="unchecked-box">meh!</li>
<li class="unchecked-box">dated <2020-06-22</li>
<li class="unchecked-box">dated 2 [d: 2020-05-26]</li>
<li class="unchecked-box">dated and important !! <2020-06-26</li>
<li class="unchecked-box">dated !! 2 [d: 2020-06-26]</li>
<li class="unchecked-box">dated and important!! <2020-06-27</li>
<li class="unchecked-box">dated!! 2 [d: 2020-07-28]</li>
</ul>
</p>
<br>
<p>
Horizontal line
</p>
<hr>
<br>
<p>
A special character:<br>
Â
</p>
<br>
<pre>
stuff tabbed in
stuff tabbed in
stuff tabbed in
</pre>
<p>
more stuff
</p>
<br>
<span class="backlinks">
<hr class='footnotes'>
<b>Backlinks:</b>
<a href='./index_files/level1a.html'>index:level1a</a>
<a href='./index_files/level1b.html'>index:level1b</a>
<a href='./index_files/level1a/level2.html'>index:level1a:level2</a>
<a href='./index_files/level1a/level2/level3a.html'>index:level1a:level2:level3a</a>
<a href='./index_files/level1a/level2/level3a/level4a.html'>index:level1a:level2:level3a:level4a</a>
<br /><br />
</span>
</div>
</div>
</div>
</div>
</div>
</body>
<script>
function myFunction() {
var x = document.getElementById("navigation");
if (x.style.display != "none") {
x.style.display = "none";
} else {
x.style.display = "block";
}
}
</script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@10.1.2/build/styles/vs.min.css">
<script src="https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@10.1.2/build/highlight.min.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
<!-- CSS only -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<!-- JS, Popper.js, and jQuery -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js" integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV" crossorigin="anonymous"></script>
<!-- https://afeld.github.io/bootstrap-toc/ -->
<!-- add after bootstrap.min.css -->
<link
rel="stylesheet"
href="https://cdn.rawgit.com/afeld/bootstrap-toc/v1.0.1/dist/bootstrap-toc.min.css"
/>
<!-- add after bootstrap.min.js -->
<script src="https://cdn.rawgit.com/afeld/bootstrap-toc/v1.0.1/dist/bootstrap-toc.min.js"></script>
</html