Commit a8df54a3ec78c8f2adc26578421f746f78568460

Werner Lemberg 2000-11-10T22:39:21

Revising, formatting.

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
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
diff --git a/docs/design/design-1.html b/docs/design/design-1.html
index 7a79b81..f168b53 100644
--- a/docs/design/design-1.html
+++ b/docs/design/design-1.html
@@ -6,32 +6,53 @@
         content="text/html; charset=iso-8859-1">
   <meta name="Author"
         content="David Turner">
-  <title>The Design of FreeType 2 - Introduction</title>
+  <title>The design of FreeType 2</title>
 </head>
 
 <body text="#000000"
-      bgcolor="#ffffff">
+      bgcolor="#FFFFFF"
+      link="#0000EF"
+      vlink="#51188E"
+      alink="#FF0000">
 
 <h1 align=center>
-  The Design of FreeType&nbsp;2
+  The design of FreeType&nbsp;2
 </h1>
 
+<h3 align=center>
+  Copyright&nbsp;1998-2000 David Turner (<a
+  href="mailto:david@freetype.org">david@freetype.org</a>)<br>
+  Copyright&nbsp;2000 The FreeType Development Team (<a
+  href="mailto:devel@freetype.org">devel@freetype.org</a>)
+</h3>
+
 <center>
-<table width="650">
+<table width="65%">
 <tr><td>
 
-<center><table width="100%" border=0 cellpadding=5><tr bgcolor="#CCFFCC" valign=center>
-<td align=center width="30%">
-&nbsp;
-</td>
-<td align=center width="30%">
-<a href="index.html">Contents</a>
-</td>
-<td align=center width="30%">
-<a href="design-2.html">Next</a>
-</td>
-</tr></table></center>
+  <center>
+  <table width="100%"
+         border=0
+         cellpadding=5>
+  <tr bgcolor="#CCFFCC"
+      valign=center>
+    <td align=center
+        width="30%">
+      &nbsp;
+    </td>
+    <td align=center
+        width="30%">
+      <a href="index.html">Contents</a>
+    </td>
+    <td align=center
+        width="30%">
+      <a href="design-2.html">Next</a>
+    </td>
+  </tr>
+  </table>
+  </center>
 
+  <p><hr></p>
 
   <table width="100%">
   <tr bgcolor="#ccccee"><td>
@@ -108,20 +129,32 @@
   such topics as system-specific interfaces, how to write your own module
   and how to tailor library initialization & compilation to your needs.</p>
 
-<center><table width="100%" border=0 cellpadding=5><tr bgcolor="#CCFFCC" valign=center>
-<td align=center width="30%">
-&nbsp;
-</td>
-<td align=center width="30%">
-<a href="index.html">Contents</a>
-</td>
-<td align=center width="30%">
-<a href="design-2.html">Next</a>
-</td>
-</tr></table></center>
+  <p><hr></p>
+
+  <center>
+  <table width="100%"
+         border=0
+         cellpadding=5>
+  <tr bgcolor="#CCFFCC" valign=center>
+    <td align=center
+        width="30%">
+      &nbsp;
+    </td>
+    <td align=center
+        width="30%">
+      <a href="index.html">Contents</a>
+    </td>
+    <td align=center
+        width="30%">
+      <a href="design-3.html">Next</a>
+    </td>
+  </tr>
+  </table>
+  </center>
 
 </td></tr>
 </table>
 </center>
+
 </body>
 </html>
diff --git a/docs/design/design-2.html b/docs/design/design-2.html
index 7d5a3b0..39a9ac8 100644
--- a/docs/design/design-2.html
+++ b/docs/design/design-2.html
@@ -6,31 +6,53 @@
         content="text/html; charset=iso-8859-1">
   <meta name="Author"
         content="David Turner">
-  <title>The Design of FreeType 2 - Basic Design</title>
+  <title>The design of FreeType 2</title>
 </head>
 
 <body text="#000000"
-      bgcolor="#ffffff">
+      bgcolor="#FFFFFF"
+      link="#0000EF"
+      vlink="#51188E"
+      alink="#FF0000">
 
 <h1 align=center>
-  The Design of FreeType&nbsp;2
+  The design of FreeType&nbsp;2
 </h1>
 
+<h3 align=center>
+  Copyright&nbsp;1998-2000 David Turner (<a
+  href="mailto:david@freetype.org">david@freetype.org</a>)<br>
+  Copyright&nbsp;2000 The FreeType Development Team (<a
+  href="mailto:devel@freetype.org">devel@freetype.org</a>)
+</h3>
+
 <center>
-<table width="650">
+<table width="65%">
 <tr><td>
 
-<center><table width="100%" border=0 cellpadding=5><tr bgcolor="#CCFFCC" valign=center>
-<td align=center width="30%">
-<a href="design-1.html">Previous</a>
-</td>
-<td align=center width="30%">
-<a href="index.html">Contents</a>
-</td>
-<td align=center width="30%">
-<a href="design-3.html">Next</a>
-</td>
-</tr></table></center>
+  <center>
+  <table width="100%"
+         border=0
+         cellpadding=5>
+  <tr bgcolor="#CCFFCC"
+      valign=center>
+    <td align=center
+        width="30%">
+      <a href="design-1.html">Previous</a>
+    </td>
+    <td align=center
+        width="30%">
+      <a href="index.html">Contents</a>
+    </td>
+    <td align=center
+        width="30%">
+      <a href="design-3.html">Next</a>
+    </td>
+  </tr>
+  </table>
+  </center>
+
+  <p><hr></p>
 
   <table width="100%">
   <tr bgcolor="#ccccee"><td>
@@ -134,20 +156,32 @@
     </li>
   </ul>
 
-<center><table width="100%" border=0 cellpadding=5><tr bgcolor="#CCFFCC" valign=center>
-<td align=center width="30%">
-<a href="design-1.html">Previous</a>
-</td>
-<td align=center width="30%">
-<a href="index.html">Contents</a>
-</td>
-<td align=center width="30%">
-<a href="design-3.html">Next</a>
-</td>
-</tr></table></center>
+  <p><hr></p>
+
+  <center>
+  <table width="100%"
+         border=0
+         cellpadding=5>
+  <tr bgcolor="#CCFFCC" valign=center>
+    <td align=center
+        width="30%">
+      <a href="design-1.html">Previous</a>
+    </td>
+    <td align=center
+        width="30%">
+      <a href="index.html">Contents</a>
+    </td>
+    <td align=center
+        width="30%">
+      <a href="design-3.html">Next</a>
+    </td>
+  </tr>
+  </table>
+  </center>
 
 </td></tr>
 </table>
 </center>
+
 </body>
 </html>
diff --git a/docs/design/design-3.html b/docs/design/design-3.html
index e04f08d..947fcce 100644
--- a/docs/design/design-3.html
+++ b/docs/design/design-3.html
@@ -6,31 +6,53 @@
         content="text/html; charset=iso-8859-1">
   <meta name="Author"
         content="David Turner">
-  <title>The Design of FreeType 2 - Public Objects</title>
+  <title>The design of FreeType 2</title>
 </head>
 
 <body text="#000000"
-      bgcolor="#ffffff">
+      bgcolor="#FFFFFF"
+      link="#0000EF"
+      vlink="#51188E"
+      alink="#FF0000">
 
 <h1 align=center>
-  The Design of FreeType&nbsp;2
+  The design of FreeType&nbsp;2
 </h1>
 
+<h3 align=center>
+  Copyright&nbsp;1998-2000 David Turner (<a
+  href="mailto:david@freetype.org">david@freetype.org</a>)<br>
+  Copyright&nbsp;2000 The FreeType Development Team (<a
+  href="mailto:devel@freetype.org">devel@freetype.org</a>)
+</h3>
+
 <center>
-<table width="650">
+<table width="65%">
 <tr><td>
 
-<center><table width="100%" border=0 cellpadding=5><tr bgcolor="#CCFFCC" valign=center>
-<td align=center width="30%">
-<a href="design-2.html">Previous</a>
-</td>
-<td align=center width="30%">
-<a href="index.html">Contents</a>
-</td>
-<td align=center width="30%">
-<a href="design-4.html">Next</a>
-</td>
-</tr></table></center>
+  <center>
+  <table width="100%"
+         border=0
+         cellpadding=5>
+  <tr bgcolor="#CCFFCC"
+      valign=center>
+    <td align=center
+        width="30%">
+      <a href="design-2.html">Previous</a>
+    </td>
+    <td align=center
+        width="30%">
+      <a href="index.html">Contents</a>
+    </td>
+    <td align=center
+        width="30%">
+      <a href="design-4.html">Next</a>
+    </td>
+  </tr>
+  </table>
+  </center>
+
+  <p><hr></p>
 
   <table width="100%">
   <tr bgcolor="#ccccee"><td>
@@ -300,20 +322,32 @@
     <p>Note that this picture will be updated at the end of the next
     chapter, related to <em>internal objects</em>.</p>
 
-<center><table width="100%" border=0 cellpadding=5><tr bgcolor="#CCFFCC" valign=center>
-<td align=center width="30%">
-<a href="design-2.html">Previous</a>
-</td>
-<td align=center width="30%">
-<a href="index.html">Contents</a>
-</td>
-<td align=center width="30%">
-<a href="design-4.html">Next</a>
-</td>
-</tr></table></center>
+  <p><hr></p>
+
+  <center>
+  <table width="100%"
+         border=0
+         cellpadding=5>
+  <tr bgcolor="#CCFFCC" valign=center>
+    <td align=center
+        width="30%">
+      <a href="design-2.html">Previous</a>
+    </td>
+    <td align=center
+        width="30%">
+      <a href="index.html">Contents</a>
+    </td>
+    <td align=center
+        width="30%">
+      <a href="design-4.html">Next</a>
+    </td>
+  </tr>
+  </table>
+  </center>
 
 </td></tr>
 </table>
 </center>
+
 </body>
 </html>
diff --git a/docs/design/design-4.html b/docs/design/design-4.html
index 234132b..6bdfbb5 100644
--- a/docs/design/design-4.html
+++ b/docs/design/design-4.html
@@ -6,31 +6,53 @@
         content="text/html; charset=iso-8859-1">
   <meta name="Author"
         content="David Turner">
-  <title>The Design of FreeType 2 - Internal Objects</title>
+  <title>The design of FreeType 2</title>
 </head>
 
 <body text="#000000"
-      bgcolor="#ffffff">
+      bgcolor="#FFFFFF"
+      link="#0000EF"
+      vlink="#51188E"
+      alink="#FF0000">
 
 <h1 align=center>
-  The Design of FreeType&nbsp;2
+  The design of FreeType&nbsp;2
 </h1>
 
+<h3 align=center>
+  Copyright&nbsp;1998-2000 David Turner (<a
+  href="mailto:david@freetype.org">david@freetype.org</a>)<br>
+  Copyright&nbsp;2000 The FreeType Development Team (<a
+  href="mailto:devel@freetype.org">devel@freetype.org</a>)
+</h3>
+
 <center>
-<table width="650">
+<table width="65%">
 <tr><td>
 
-<center><table width="100%" border=0 cellpadding=5><tr bgcolor="#CCFFCC" valign=center>
-<td align=center width="30%">
-<a href="design-3.html">Previous</a>
-</td>
-<td align=center width="30%">
-<a href="index.html">Contents</a>
-</td>
-<td align=center width="30%">
-<a href="design-5.html">Next</a>
-</td>
-</tr></table></center>
+  <center>
+  <table width="100%"
+         border=0
+         cellpadding=5>
+  <tr bgcolor="#CCFFCC"
+      valign=center>
+    <td align=center
+        width="30%">
+      <a href="design-3.html">Previous</a>
+    </td>
+    <td align=center
+        width="30%">
+      <a href="index.html">Contents</a>
+    </td>
+    <td align=center
+        width="30%">
+      <a href="design-5.html">Next</a>
+    </td>
+  </tr>
+  </table>
+  </center>
+
+  <p><hr></p>
 
   <table width="100%">
   <tr bgcolor="#ccccee"><td>
@@ -308,20 +330,32 @@
            alt="Complete library model">
     </center>
 
-<center><table width="100%" border=0 cellpadding=5><tr bgcolor="#CCFFCC" valign=center>
-<td align=center width="30%">
-<a href="design-3.html">Previous</a>
-</td>
-<td align=center width="30%">
-<a href="index.html">Contents</a>
-</td>
-<td align=center width="30%">
-<a href="design-5.html">Next</a>
-</td>
-</tr></table></center>
+  <p><hr></p>
+
+  <center>
+  <table width="100%"
+         border=0
+         cellpadding=5>
+  <tr bgcolor="#CCFFCC" valign=center>
+    <td align=center
+        width="30%">
+      <a href="design-3.html">Previous</a>
+    </td>
+    <td align=center
+        width="30%">
+      <a href="index.html">Contents</a>
+    </td>
+    <td align=center
+        width="30%">
+      <a href="design-5.html">Next</a>
+    </td>
+  </tr>
+  </table>
+  </center>
 
 </td></tr>
 </table>
 </center>
+
 </body>
 </html>
diff --git a/docs/design/design-5.html b/docs/design/design-5.html
index 6d18011..71fa25d 100644
--- a/docs/design/design-5.html
+++ b/docs/design/design-5.html
@@ -6,31 +6,53 @@
         content="text/html; charset=iso-8859-1">
   <meta name="Author"
         content="David Turner">
-  <title>FreeType 2 - Modules</title>
+  <title>The design of FreeType 2</title>
 </head>
 
 <body text="#000000"
-      bgcolor="#ffffff">
+      bgcolor="#FFFFFF"
+      link="#0000EF"
+      vlink="#51188E"
+      alink="#FF0000">
 
 <h1 align=center>
   The design of FreeType&nbsp;2
 </h1>
 
+<h3 align=center>
+  Copyright&nbsp;1998-2000 David Turner (<a
+  href="mailto:david@freetype.org">david@freetype.org</a>)<br>
+  Copyright&nbsp;2000 The FreeType Development Team (<a
+  href="mailto:devel@freetype.org">devel@freetype.org</a>)
+</h3>
+
 <center>
-<table width="650">
+<table width="65%">
 <tr><td>
 
-<center><table width="100%" border=0 cellpadding=5><tr bgcolor="#CCFFCC" valign=center>
-<td align=center width="30%">
-<a href="design-4.html">Previous</a>
-</td>
-<td align=center width="30%">
-<a href="index.html">Contents</a>
-</td>
-<td align=center width="30%">
-<a href="design-6.html">Next</a>
-</td>
-</tr></table></center>
+  <center>
+  <table width="100%"
+         border=0
+         cellpadding=5>
+  <tr bgcolor="#CCFFCC"
+      valign=center>
+    <td align=center
+        width="30%">
+      <a href="design-4.html">Previous</a>
+    </td>
+    <td align=center
+        width="30%">
+      <a href="index.html">Contents</a>
+    </td>
+    <td align=center
+        width="30%">
+      <a href="design-6.html">Next</a>
+    </td>
+  </tr>
+  </table>
+  </center>
+
+  <p><hr></p>
 
   <table width="100%">
   <tr bgcolor="#ccccee"><td>
@@ -405,20 +427,32 @@
     <p>Helper modules use the base <tt>FT_ModuleRec</tt> type.  We will
     describe these classes in the next chapters.</p>
 
-<center><table width="100%" border=0 cellpadding=5><tr bgcolor="#CCFFCC" valign=center>
-<td align=center width="30%">
-<a href="design-4.html">Previous</a>
-</td>
-<td align=center width="30%">
-<a href="index.html">Contents</a>
-</td>
-<td align=center width="30%">
-<a href="design-6.html">Next</a>
-</td>
-</tr></table></center>
+  <p><hr></p>
+
+  <center>
+  <table width="100%"
+         border=0
+         cellpadding=5>
+  <tr bgcolor="#CCFFCC" valign=center>
+    <td align=center
+        width="30%">
+      <a href="design-4.html">Previous</a>
+    </td>
+    <td align=center
+        width="30%">
+      <a href="index.html">Contents</a>
+    </td>
+    <td align=center
+        width="30%">
+      <a href="design-6.html">Next</a>
+    </td>
+  </tr>
+  </table>
+  </center>
 
 </td></tr>
 </table>
 </center>
+
 </body>
 </html>
diff --git a/docs/design/design-6.html b/docs/design/design-6.html
index d537b68..f7c0a9e 100644
--- a/docs/design/design-6.html
+++ b/docs/design/design-6.html
@@ -6,32 +6,53 @@
         content="text/html; charset=iso-8859-1">
   <meta name="Author"
         content="David Turner">
-  <title>The Design of FreeType 2 - Introduction</title>
+  <title>The design of FreeType 2</title>
 </head>
 
 <body text="#000000"
-      bgcolor="#ffffff">
+      bgcolor="#FFFFFF"
+      link="#0000EF"
+      vlink="#51188E"
+      alink="#FF0000">
 
 <h1 align=center>
-  The Design of FreeType&nbsp;2
+  The design of FreeType&nbsp;2
 </h1>
 
+<h3 align=center>
+  Copyright&nbsp;1998-2000 David Turner (<a
+  href="mailto:david@freetype.org">david@freetype.org</a>)<br>
+  Copyright&nbsp;2000 The FreeType Development Team (<a
+  href="mailto:devel@freetype.org">devel@freetype.org</a>)
+</h3>
+
 <center>
-<table width="650">
+<table width="65%">
 <tr><td>
 
-<center><table width="100%" border=0 cellpadding=5><tr bgcolor="#CCFFCC" valign=center>
-<td align=center width="30%">
-<a href="design-5.html">Previous</a>
-</td>
-<td align=center width="30%">
-<a href="index.html">Contents</a>
-</td>
-<td align=center width="30%">
-&nbsp;
-</td>
-</tr></table></center>
+  <center>
+  <table width="100%"
+         border=0
+         cellpadding=5>
+  <tr bgcolor="#CCFFCC"
+      valign=center>
+    <td align=center
+        width="30%">
+      <a href="design-5.html">Previous</a>
+    </td>
+    <td align=center
+        width="30%">
+      <a href="index.html">Contents</a>
+    </td>
+    <td align=center
+        width="30%">
+      &nbsp;
+    </td>
+  </tr>
+  </table>
+  </center>
 
+  <p><hr></p>
 
   <table width="100%">
   <tr bgcolor="#ccccee"><td>
@@ -42,20 +63,32 @@
   </table>
 
 
-<center><table width="100%" border=0 cellpadding=5><tr bgcolor="#CCFFCC" valign=center>
-<td align=center width="30%">
-<a href="design-5.html">Previous</a>
-</td>
-<td align=center width="30%">
-<a href="index.html">Contents</a>
-</td>
-<td align=center width="30%">
-&nbsp;
-</td>
-</tr></table></center>
+  <p><hr></p>
+
+  <center>
+  <table width="100%"
+         border=0
+         cellpadding=5>
+  <tr bgcolor="#CCFFCC" valign=center>
+    <td align=center
+        width="30%">
+      <a href=design-5.html">Previous</a>
+    </td>
+    <td align=center
+        width="30%">
+      <a href="index.html">Contents</a>
+    </td>
+    <td align=center
+        width="30%">
+      &nbsp;
+    </td>
+  </tr>
+  </table>
+  </center>
 
 </td></tr>
 </table>
 </center>
+
 </body>
 </html>
diff --git a/docs/design/index.html b/docs/design/index.html
index f78e3de..0270fa8 100644
--- a/docs/design/index.html
+++ b/docs/design/index.html
@@ -6,72 +6,73 @@
         content="text/html; charset=iso-8859-1">
   <meta name="Author"
         content="David Turner">
-  <title>The Design of FreeType 2 - Introduction</title>
+  <title>The design of FreeType 2</title>
 </head>
 
 <body text="#000000"
-      bgcolor="#ffffff">
+      bgcolor="#FFFFFF"
+      link="#0000EF"
+      vlink="#51188E"
+      alink="#FF0000">
 
 <h1 align=center>
-  The Design of FreeType&nbsp;2
+  The design of FreeType&nbsp;2
 </h1>
 
-<center>
-<table width="650">
-<tr><td>
+<h3 align=center>
+  Copyright&nbsp;1998-2000 David Turner (<a
+  href="mailto:david@freetype.org">david@freetype.org</a>)<br>
+  Copyright&nbsp;2000 The FreeType Development Team (<a
+  href="mailto:devel@freetype.org">devel@freetype.org</a>)
+</h3>
 
 
-  <table width="100%">
-  <tr bgcolor="#ccccee"><td>
-    <h1>
-       Abstract
-    </h1>
-  </td></tr>
-  </table>
-
-  <p>This document describes the details of FreeType 2's internals.
-     It's a good read if you need to understand the innards of the
-     library in order to hack or extend it.</p>
-
+<center>
+<table width="70%">
+<tr><td>
 
+  <p>This document describes the details of FreeType&nbsp;2's internals.
+  Read this carefully if you need to understand the innards of the library
+  in order to hack or extend it.</p>
 
   <table width="100%">
-  <tr bgcolor="#ccccee"><td>
-    <h1>
-       Table of Contents
-    </h1>
-  </td></tr>
+  <tr valign=center
+      bgcolor="#CCCCFF">
+    <td align=center>
+      <h2>
+        Table of Contents
+      </h2>
+    </td>
+  </tr>
   </table>
 
+  <center>
+  <table width="80%">
+  <tr><td>
 
-  <center><table width="60%"><tr><td>
-
-
-  <a href="design-1.html">
-  <h2>Introduction</h2>
-  </a>
-
-
-  <a href="design-2.html">
-  <h2>I. Components and APIs:</h2>
-  </a>
+  <h2>
+    <a href="design-1.html">Introduction</a>
+  </h2>
 
+  <h2>
+    <a href="design-2.html">I. Components and APIs</a>
+  </h2>
 
-  <a href="design-3.html">
-  <h2>II. Public Objects and Classes:</h2>
-  </a>
+  <h2>
+    <a href="design-3.html">II. Public Objects and Classes</a>
+  </h2>
 
+  <h2>
+    <a href="design-4.html">III. Internal Objects and Classes</a>
+  </h2>
 
-  <a href="design-4.html">
-  <h2>III. Internal Objects and Classes:</h2>
-  </a>
+  <h2>
+    <a href="design-5.html">IV. Module Classes</a>
+  </h2>
 
-
-  <a href="design-5.html">
-  <h2>IV. Module Classes:</h2>
-  </a>
-
-  </td></tr></table></center>
+  </td></tr>
+  </table>
+  </center>
 
 </td></tr>
 </table>
diff --git a/docs/glyphs/glyphs-1.html b/docs/glyphs/glyphs-1.html
index 4b409af..ad945f7 100644
--- a/docs/glyphs/glyphs-1.html
+++ b/docs/glyphs/glyphs-1.html
@@ -88,7 +88,7 @@
     context.  For example, most users of word-processors use "font" to
     describe a font family (e.g. "Courier", "Palatino", etc.); however most
     of these families are implemented through several data files depending
-    on the file format: For TrueType, this is usually one per face (i.e. 
+    on the file format: For TrueType, this is usually one per face (i.e.
     <tt>arial.ttf</tt> for "Arial Regular", <tt>ariali.ttf</tt> for "Arial
     Italic", etc.).  The file is also called a "font" but really contains a
     font face.</p>
@@ -121,7 +121,7 @@
     script, usage or context.  Several characters can also take a single
     glyph (good examples are Roman ligatures like "fi" and "fl" which can be
     represented by a single glyph).  The relationships between characters
-    and glyphs can be very complex, but won't be discussed in this document. 
+    and glyphs can be very complex, but won't be discussed in this document.
     Moreover, some formats use more or less awkward schemes to store and
     access glyphs.  For the sake of clarity, we only retain the following
     notions when working with FreeType:</p>
diff --git a/docs/glyphs/glyphs-2.html b/docs/glyphs/glyphs-2.html
index 06e9d98..3796831 100644
--- a/docs/glyphs/glyphs-2.html
+++ b/docs/glyphs/glyphs-2.html
@@ -211,7 +211,7 @@
 
     <p>The outline as stored in a font file is called the "master" outline,
     as its points coordinates are expressed in font units.  Before it can be
-    converted into a bitmap, it must be scaled to a given size/resolution. 
+    converted into a bitmap, it must be scaled to a given size/resolution.
     This is done through a very simple transformation, but always creates
     undesirable artifacts, e.g. stems of different widths or heights in
     letters like "E" or "H".</p>
@@ -235,7 +235,7 @@
 
         <p>The TrueType format defines a stack-based virtual machine, for
         which programs can be written with the help of more than
-        200&nbsp;opcodes (most of these relating to geometrical operations). 
+        200&nbsp;opcodes (most of these relating to geometrical operations).
         Each glyph is thus made of both an outline and a control program to
         perform the actual grid-fitting in the way defined by the font
         designer.</p>
@@ -293,7 +293,7 @@
         </td>
 
         <td valign=top>
-          <p><b>Quality.</b> Excellent results at small sizes are possible. 
+          <p><b>Quality.</b> Excellent results at small sizes are possible.
           This is very important for screen display.</p>
 
           <p><b>Consistency.</b> All renderers produce the same glyph
diff --git a/docs/glyphs/glyphs-3.html b/docs/glyphs/glyphs-3.html
index d5e0503..ee917ca 100644
--- a/docs/glyphs/glyphs-3.html
+++ b/docs/glyphs/glyphs-3.html
@@ -82,7 +82,7 @@
 
     <ul>
       <li>
-        <p>With horizontal layout, glyphs simply "rest" on the baseline. 
+        <p>With horizontal layout, glyphs simply "rest" on the baseline.
         Text is rendered by incrementing the pen position, either to the
         right or to the left.</p>
 
diff --git a/docs/glyphs/glyphs-5.html b/docs/glyphs/glyphs-5.html
index 11acbc7..4dbb7e7 100644
--- a/docs/glyphs/glyphs-5.html
+++ b/docs/glyphs/glyphs-5.html
@@ -268,7 +268,7 @@
       4. Right-to-left layout
     </h3>
 
-    <p>The process of laying out Arabic or Hebrew text is extremely similar. 
+    <p>The process of laying out Arabic or Hebrew text is extremely similar.
     The only difference is that the pen position must be decremented before
     the glyph rendering (remember: the advance width is always positive,
     even for Arabic glyphs).</p>
@@ -412,7 +412,7 @@
     text size).</p>
 
     <p>These distinct resolutions explain some differences when displaying
-    text at the same character size on a Mac and a Windows machine. 
+    text at the same character size on a Mac and a Windows machine.
     Moreover, it is not unusual to find some TrueType fonts with enhanced
     hinting (technical note: through delta-hinting) for the sizes of 10, 12,
     14 and 16&nbsp;points at 96&nbsp;dpi.</p>
diff --git a/docs/glyphs/glyphs-6.html b/docs/glyphs/glyphs-6.html
index 7534468..6a8e9e1 100644
--- a/docs/glyphs/glyphs-6.html
+++ b/docs/glyphs/glyphs-6.html
@@ -84,7 +84,7 @@
       plane.  Each contour is made of a series of line segments and
       B&eacute;zier arcs.  Depending on the file format, these can be
       second-order or third-order polynomials.  The former are also called
-      quadratic or conic arcs, and they are used in the TrueType format. 
+      quadratic or conic arcs, and they are used in the TrueType format.
       The latter are called cubic arcs and are mostly used in the
       Type&nbsp;1 format.</p>
 
diff --git a/docs/glyphs/glyphs-7.html b/docs/glyphs/glyphs-7.html
index e1ae854..b57ba06 100644
--- a/docs/glyphs/glyphs-7.html
+++ b/docs/glyphs/glyphs-7.html
@@ -98,7 +98,7 @@
     center being at location (0.5,0.5).</p>
 
     <p>This introduces some differences when computing distances.  For
-    example, the <em>length</em> in pixels of the line [0,0]-[10,0] is 11. 
+    example, the <em>length</em> in pixels of the line [0,0]-[10,0] is 11.
     However, the vectorial distance between (0,0)-(10,0) covers exactly
     10&nbsp;pixel centers, hence its length is&nbsp;10.</p>