File: t2html-4.html

package info (click to toggle)
t2html 2016.1020%2Bgit294e8d7-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 836 kB
  • sloc: perl: 4,711; makefile: 133
file content (1337 lines) | stat: -rw-r--r-- 28,635 bytes parent folder | download | duplicates (2)
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
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<!--
	Note: the LINK tags are used by advanced browsers.
-->
<head>
<title>
Page title is embedded inside text file
</title>



<!--    ......................................................................
    META TAGS (FOR SEARCH ENGINES)
    ......................................................................
-->

  <meta http-equiv="keywords"
	CONTENT="test, html, example">

<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  <meta http-equiv="Expires" content="Thu, 20 Nov 2008 23:15:29 GMT">


  <meta http-equiv="Made"
	content="mailto:author@examle.com">


  <meta name="Generator"
	content="2008-09-22 02:15 Perl program t2html v2008.0921.2243 http://freecode.com/projects/perl-text2html">



<!--    ......................................................................
    BUTTON DEFINITION START
    ......................................................................
-->



    <style type="text/css">



	/*

	    ///////////////////////////////////////////////////////////
	       NOTE    NOTE    NOTE    NOTE    NOTE    NOTE    NOTE

	    This is the default CSS 2.0 generated by the program,
	    please see "t2html --help" for option --script-file
	    to import your own CSS and Java definitions into the page.

	    XHTML note: at page http://www.w3.org/TR/xhtml1/#guidelines
	    It is recommended that CSS2 with XHTML use lowercase
	    element and attribute names

	    This default CSS2 has been validated according to
	    http://jigsaw.w3.org/css-validator/validator-uri.html.en

	    To design colors, visit:
	    http://www.btexact.com/people/rigdence/colours/

	       NOTE    NOTE    NOTE    NOTE    NOTE    NOTE    NOTE
	    ///////////////////////////////////////////////////////////

	    Comments on the CSS tags:

	    -   block-width: "thin" (Netscape ok, MSIE nok)

	    NETSCAPE 4.05

	    -  In general does not render CSS very well. Eg
	       font size changes does not show up in screen.
	    -  :hover property is not recognised

	    NETSCAPE 4.75 as of 2000-10-01

	    -  Shows garbage for stylesheet section that marked CITATION.
	       (IE has no trouble to show it)

	    MSIE 4.0+

	    - Renders CSS very well.

	    Media types

	    - Netscape does not transfer the CSS element definitions to
	      the "print" media as it should. They only affect Browser
	      or media "screen"
	    - That is why you really have to say EM STRONG ... /STRONG EM
	      to get that kind of text seen in printer too. You cannot
	      just define P.column7 { ... }

	    The @media CSS definition is not supported by Netscape 4.05
	    I do not know if MSIE 4.0 supports it.

	    So doing this would cause CSS to be ignored completely
	    (never mind that CSS says the default CSS applies to "visual",
	    which means both print and scree types.)

		@media print, screen {  P.code {..}  }

	    To work around that, we separate the definitions with

		P.code { .. }               // For screen

		@media print { P.code      // for printer
		{
		    ..
		}}

	    And wish that some newer browser will render it right.

	*/

	/*   ///////////////////////////////////////////////// HEADINGS */

	h1.default
	{
	    font-family: bold x-large Arial,helvetica,Sans-serif;
	    padding-top: 10pt;
	}

	h2.default
	{
	    font-family: bold large Arial,Helvetica,Sans-serif;
	}

	h3.default
	{
	    font-family: bold medium Arial,Helvetica,Sans-serif;
	}

	h4.default
	{
	    font-family: medium Arial,Helvetica,Sans-serif;
	}

	/*   ////////////////////////// Make pointing AHREF more visual */

	body
	{
	    font-family: "Times New Roman", serif;


	    /*
		More readable font, Like Arial in MS Word
		The background color is grey

		font-family: "verdana", sans-serif;
		background-color: #dddddd;
		foreground-color: #000000;

		Traditional "Book" and newspaper font
		font-family: "Times New Roman", serif;
	    */
	}

	a:link
	{
	    font-style: italic;
	}

	/*   A name=... link references */

	a.name
	{
	    font-style: normal;
	}

	a:hover
	{
	    color:           purple;
	    background:      #AFB;
	    text-decoration: none;
	}

	    /* cancel above italic in TOC and Navigation buttons */

	a.btn:link
	{
	    font-style: normal;
	}

	    /* each link in TOC */


	a.toc
	{
	    font-family: verdana, sans-serif;
	    font-style: normal;
	}

	a.toc:link
	{
	    font-style: normal;
	}

	    /* [toc] heading button which appears in non-frame html */

	a.btn-toc:link
	{
	    font-style: normal;
	    font-family: verdana, sans-serif;
	    /* font-size:  0.7em; */
	}

	/*  //////////////////////////////////// Format the code sections  */

	/*  MSIE ok, Netscape nok: Indent text to same level to the right  */

	blockquote
	{
	    margin-right: 2em;
	}

	@media print   { BLOCKQUOTE
	{
	    margin-right: 0;
	}}

	samp.code
	{
	    color: Navy;
	}

	hr.special
	{
	    width: 50%;
	    text-align; left;
	}

	pre
	{
	    font-family:   "Courier New", monospace;
	    font-size:     0.8em;
	    margin-top:    1em;
	    margin-bottom: 1em;
	}

	pre.code
	{
	    color: Navy;
	}

	p.code, p.code1, p.code2
	{
	    /*
	       margin-top:     0.4em;
	       margin-bottom:  0.4em;
	       line-height:    0.9em;
	    */

	    font-family:    "Courier New", monospace;
	    font-size:      0.8em;
	    color:          Navy;
	}

	/* //////////////////////// tables /////////////////////////// */

	table
	{
	    border: none;
	    width: 100%;
	    cellpadding: 10px;
	    cellspacing: 0px;
	}

	table.basic
	{
		font-family:    "Courier New", monospace;
		color: Navy;
	}

	table.dashed
	{

		/* font-family: sans-serif; /*
		/* background:  #F7DE9C; */

		color: Navy;

		border-top:     1px #999999 solid;
		border-left:    1px #999999 solid;
		border-right:   1px #666666 solid;
		border-bottom:  1px #666666 solid;
		border-width:   94%;
		border-style: dashed; /* dotted */


		/* line-height: 105%; */
	}

	table.solid
	{
		font-family:    "Courier New", monospace;
		/* afont-size:      0.8em; */

		color:          Navy;

		/* font-family: sans-serif; /*
		/* background:  #F7DE9C; */

		border-top:     1px #CCCCCC solid;
		border-left:    1px #CCCCCC solid; /* 999999 */
		border-right:   1px #666666 solid;
		border-bottom:  1px #666666 solid; /* dark grey */
		/* line-height: 105%; */
	}

	/* Make 3D styled layout by thickening the boton + right. */

	table.shade-3d
	{
		font-family:    "Courier New", monospace;
		font-size:      0.8em;

		color:          #999999; /* Navy; */

		/* font-family: sans-serif; /*
		/* background:  #F7DE9C; */

		/* border-top:  1px #999999 solid; */
		/* border-left: 1px #999999 solid; */
		border-right:   4px #666666 solid;
		border-bottom:  3px #666666 solid;
		/* line-height: 105%; */
	}

	.shade-3d-attrib
	{
	    /*
		F9EDCC          Light Orange
		FAEFD2          Even lighter Orange

		#FFFFCC         Light yellow, lime

	    */

	    background: #FFFFCC;
	}

	table tr td pre
	{
		/*  Make PRE tables "airy" */
		margin-top:    1em;
		margin-bottom: 1em;
	}

	table.shade-normal
	{
		font-family:    "Courier New", monospace;
		/* font-size:      0.9em; */
		color:          Navy;
	}

	.shade-normal-attrib
	{
	    /*  grey: EAEAEA, F0F0F0 FFFFCC
		lime: F7F7DE CCFFCC
		pinkish: E6F1FD D8E9FB C6DEFA FFEEFF (light ... darker)
		slightly darker than F1F1F1: #EFEFEF;
	    */
	    background: #F1F1F1;
	}

	table.shade-normal2
	{
		font-family:    "Courier New", monospace;
	}

	.shade-normal2-attrib
	{
	    background: #E0E0F0;
	}

	.shade-note-attrib
	{
	    /*  darker is #E0E0F0; */
	    /* background: #E5ECF3; */
	    background: #E5ECF3;
	    font-family: Georgia, "New Century Schoolbook",
			 Palatino, Verdana, Helvetica, serif;
	    font-size: 0.8em;
	}

	/* ..................................... colors ................. */

	.color-white
	{
	    color: Navy;
	    background: #FFFFFF;
	}

	.color-fg-navy
	{
	    color: navy;
	}

	.color-fg-blue
	{
	    color: blue;
	}

	.color-fg-teal
	{
	    color: teal;
	}

	/*   Nice combination: teal-dark, beige2 and  beige-dark */

	.color-teal-dark
	{
	    color: #96EFF2;
	}

	.color-beige
	{
	    color: Navy;
	    background: #F7F7DE;
	}

	.color-beige2
	{
	    color: Navy;
	    background: #FAFACA;
	}

	.color-beige3
	{
	    color: Navy;
	    background: #F5F5E9;
	}

	.color-beige-dark
	{
	    color: Navy;
	    background: #CFEFBD;
	}

	.color-pink-dark
	{
	    background: #E6F1FD;
	}

	.color-pink-medium
	{
	    background: #D8E9FB;
	}

	.color-pink
	{
	    /*  grey: EAEAEA, F0F0F0 FFFFCC
		lime: F7F7DE CCFFCC
		pinkish: E6F1FD D8E9FB C6DEFA FFEEFF (light ... darker)
	    */
	    background: #C6DEFA;
	}

	.color-pink-light
	{
	    background: #FFEEFF;
	}

	.color-blue-light
	{
	    background: #F0F0FF;
	}

	.color-blue-medium
	{
	    background: #4A88BE;
	}

	/* ////////////////////////////////////////////// Format columns */

	p.column3
	{
	    color: Green;
	}

	p.column5
	{
	    color: #87C0FF;   /* shaded casual blue */
	}

	p.column6
	{
	    /* #809F69 is Forest green
	       But web safe colors are:
	       Lighter  ForestGreen: 66CC00
	       ForestGreen: #999966 669900 339900 669966

	    color: #669900;
	    font-family: "Goudy Old Style"
	    */
	    margin-left: 3em;
	    font-family: Georgia, "New Century Schoolbook",
			 Palatino, Verdana, Arial, Helvetica;
	    font-size:  0.9em;
	}

	    /* This is so called 3rd heading */

	p.column7
	{
	    font-style:  italic;
	    font-weight: bold;
	}

	@media print { P.column7
	{
	    font-style:  italic;
	    font-weight: bold;
	}}

	p.column8
	{

	}

	p.column9
	{
	    font-weight: bold;
	}

	p.column10
	{
	    padding-top: 0;
	}

	em.quote10
	{
	    /*
		#FF00FF Fuchsia;
		#0000FF Blue

		#87C0FF casual blue
		#87CAF0

		#A0FFFF Very light blue

		#809F69 = Forest Green , see /usr/lib/X11/rgb.txt

		background-color:

		color: #80871F ; Orange, short of

		# font-family: "Gill Sans", sans-serif;

		line-height: 0.9em;
		font-style:  italic;
		font-size:   0.8em;

		line-height: 0.9em;
		color: #008080;

		background-color: #F5F5F5;
		#809F69; forest green
		#F5F5F5; Pale grey
		#FFf098; pale green
		##bfefff; #ffefff; LightBlue1

		background-color: #ffefff;

		.................
		#FFFCE7         Orange very light
		#FFE7BF         Orange dark
		#FFFFBF         Orange limon

	     */

	     /*
	     #  See a nice page at
	     #  http://www.cs.helsinki.fi/linux/
	     #  http://www.cs.helsinki.fi/include/tktl.css
	     #
	     #  3-4 of these first fonts have almost identical look
	     #  Browser will pick the one that is supported
	     */

	     font-family: lucida, lucida sans unicode, verdana, arial, "Trebuchet MS", helvetica, sans-serif;
	     background-color: #eeeeff;
	     font-size:   0.8em;
	}

	@media print { em.quote10
	{
	    font-style:  italic;
	    line-height: 0.9em;
	    font-size:   0.8em;
	}}

	p.column11
	{
	    font-family: arial, verdana, helvetica, sans-serif;
	    font-size: 0.9em;
	    font-style: italic;
	    color: Fuchsia;
	}

	/* /////////////////////////////////////////////// Format words */

	em.word
	{
	    /* #809F69 Forest green */
	    color: #80B06A;  /*Darker Forest green */
	}

	strong.word
	{

	}

	samp.word
	{
	    color: #4C9CD4;
	    font-weight: bold;
	    font-family:    "Courier New", monospace;
	    font-size:      0.85em;
	}

	span.super
	{
	    /* superscripts */
	    color: teal;
	    vertical-align: super;
	    font-family: Verdana, Arial, sans-serif;
	    font-size: 0.8em;
	}

	span.word-ref
	{
	    color: teal;
	}

	span.word-big
	{
	    color: teal;
	    font-size: 1.2em;
	}

	span.word-small
	{
	    color: #CC66FF;
	    font-family: Verdana, Arial, sans-serif;
	    font-size: 0.7em;
	}

	/* /////////////////////////////////////////////// Format other */

	/* 7th column starting with double quote */

	span.quote7
	{
	    /* color: Green; */
	    /* font-style: italic; */
	    font-family: Verdana;
	    font-weigh: bold;
	    font-size: 1em;
	}

	/* This appears in FRAME version: xxx-toc.html */

	div.toc
	{
	    font-size: 0.8em;
	}

	/* This appears in picture: the acption text beneath */

	div.picture
	{
	    font-style: italic;
	}

	/* This is the document info footer */

	em.footer
	{
	    font-size: 0.9em;
	}


    </style>


    <!-- ...................................................... Java code -->

    <script type="text/javascript">

	function MakeVisual(obj)
	{
	    obj.style.fontWeight = "italic";
	}

	function MakeNormal(obj)
	{
	    obj.style.fontWeight = "normal";
	}

	function IgnoreErrors()
	{
	    return true;
	}

	window.onerror = IgnoreErrors;

    </script>

</head>

<body >


<!--    ......................................................................
    TABLE OF CONTENT START
    ......................................................................
-->


<div class="toc">
<a name="toc" id="toc" class="name"></a>
<h1>
    Table of Contents

</h1>


<ul>
<li>
    <a href="#headings" class="toc">
	Headings
    </a>
    <br>
<li>
    <a href="#markup" class="toc">
	Markup
    </a>
    <br>
<li>
    <a href="#emacs_minor_mode" class="toc">
	Emacs minor mode
    </a>
    <br>
<li>
    <a href="#bullets_lists_and_links" class="toc">
	Bullets, lists, and links
    </a>
    <br>
<li>
    <a href="#line_breaking" class="toc">
	Line breaking
    </a>
    <br>
<li>
    <a href="#specials" class="toc">
	Specials
    </a>
    <br>
</ul>
<a href="#samples_per_column_heading_level_h1" class="toc">
	Samples per column (heading level h1)
    </a>
    <br>

<ul>
<li>
    <a href="#column_4_next_heading_level_h2" class="toc">
	Column 4, Next heading level (h2)
    </a>
    <br>
<li>
    <a href="#another_level_2_heading_column_4" class="toc">
	Another level 2 heading (column 4)
    </a>
    <br>
</ul>
<a href="#table_rendering_examples" class="toc">
	Table rendering examples
    </a>
    <br>
<a href="#conversion_program" class="toc">
	Conversion program
    </a>
    <br>
</ul>

</div>


<!--    ......................................................................
    TABLE OF CONTENT END
    ......................................................................
-->

t2html Test Page



<p class="column8">
        Copyright &copy; 1996-2008 Jari Aalto


<p class="column8">
        License: This material may be distributed only subject to
        the terms and conditions set forth in GNU General Public
        License v2 or later; or, at your option, distributed under the
        terms of GNU Free Documentation License version 1.2 or later
        (GNU FDL).


<p class="column8">
        This is a demonstration text of Perl Text To HTML
        converter.



  <a name="headings" id="headings"></a>
  <h2>
      Headings

  </h2>




<p>
<p class="column8">
        The tool provides for two heading levels. Combined with
        bullets and numbered lists, it ought to be enough for most
        purposes, unless you really like section 1.2.3.4.5


<p class="column8">
        You can insert links to headings or other documents. The
        convention is interior links are made by joining the first
        four words of the heading with underscores, so they must be
        unique. A link to a heading below looks like this in the text
        document and generates the link shown. There also is syntax
        for automatically inserting a base URL (see the tool
        documentation).


<p class="column8">
        The following blue link is generated with markup code:
        # REF #Markup ;(Markup);


<p class="column8">
        <a href="#Markup " >(Markup)</A>



  <a name="markup" id="markup"></a>
  <h2>
      Markup

  </h2>




<p>
<p class="column8">
        The markup here is mostly based on column position, meaning
        mostly no tags. The exceptions are special marks for bullets
        and for emphasis. See later sections for the effects of column
        position on the output HTML.


<p class="column8">
        Text surrounded by = equals = comes out <span class="word-small">another</span> <span class="word-small">color</span><br>
        Text surrounded by backquote/forward quote comes out <samp class="word">color</samp> `<br>
        Text surrounded by * asterisks * comes out <em class="word">italic</em> <em class="word">text</em><br>
        Text surrounded by _ underscores _ comes out <strong class="word">bold</strong><br>
        The long dash &ndash; is signified with two consequent dashes (-)<br>
        The plus-minus is signified with (+) and (-) markers combined &plusmn;4<br>
        Big character &quot;C&quot; in parentheses ( C ) make a copyright sign (C)<br>
        Registered trade mark sign &reg; is big character &quot;R&quot; in parentheses ( R )<br>
        Euro sign is small character &quot;e&quot; right after digit: 400 &euro;<br>
        Degree sign is number &quot;0&quot; in parentheses just after number: 5&deg;C<br>
        Superscript is maerked with bracket immediately attached to text<span class="super">see this</span><br>
        Special HTML entities can embedded in a normal way, like: &times; &lt; &gt; &le; &ge; &ne; &radic; &minus; &alpha; &beta; &gamma; &#402; &divide; &laquo; &raquo; - &ndash; &mdash; &asymp; &equiv; &lsaquo; &rsaquo; &sum; &infin; &trade;<br>




  <a name="emacs_minor_mode" id="emacs_minor_mode"></a>
  <h2>
      Emacs minor mode

  </h2>




<p>
<p class="column8">
        If you use the advertised Emacs minor mode (tinytf.el) you can
        easily renumber headings as you revise the text. Test is also
        colorized as you edit content.


<p class="column8">
        The editing mode can automatically generate the table of
        contents and the HTML generator can use it to generate a two
        frame output with the TOC in the left frame as hotlinks to the
        sections and subsections.
        Visit <a href="http://freecode.com/projects/emacs-tiny-tools" >http://freecode.com/projects/emacs-tiny-tools</A>



  <a name="bullets_lists_and_links" id="bullets_lists_and_links"></a>
  <h2>
      Bullets, lists, and links

  </h2>




<p>
<p class="column8">
        This is ordinary text.

<ul>
	<li>This is a bullet paragraph with a continuation mark
            (leading comma) in the last line. It will not work if the
	            comma is on the same line as the bullet.
<p>


            This is a continued bullet paragraph. You use a leading
            comma in the last line of the previous block to make a
            continued item. This is ok except the paragraph fill code
            (for the previous paragraph) cannot deal with it. Maybe
            it is a hint not to do continued bullets, or a hint not to
	            put the comma in until you are done formatting.</li>
</ul>



<ul>
	<li>The next bullet.  the sldjf sldjf sldkjf slkdjf sldkjf
	            lsdkjf slkdjf sldkjf sldkjf lskdj flskdjf lskdjf lsdkjf.</li>
</ul>



<ol>
	<li>This is a numbered list, made with a '.' in column 8 of its
            first line and text in column 12. You may not have blank
            lines between the items.
<li>Clickable email <em><a href="mailto:gork@ork.com" >gork@ork.com</A></em>.
	</li>
<li>Non-clickable email gork@ork.com.
	</li>
<li>Clickable link: <a href="http://this.com" >http://this.com</A>
	</li>
<li>Non-clickable link: http://this.com.
	<li>Clickable file: <a href="file:/home/gork/x.txt" >file:/home/gork/x.txt</A>.</li>
</ol>





  <a name="line_breaking" id="line_breaking"></a>
  <h2>
      Line breaking

  </h2>




<p>
<p class="column8">
        Ordinary text with leading dot(.) forces line breaks in the HTML.
        Here is a line with forced break.<br>
        Here is another line thatcontains dot-code at the beginning.<br>



  <a name="specials" id="specials"></a>
  <h2>
      Specials

  </h2>




<p>
<p class="column8">
        You can use superscripts<span class="super">1</span>, multiple<span class="super">(2)</span> and almost
        any<span class="super">(ab)</span> and imaginable<span class="super">IV superscripts</span>

<hr>
	<a name="samples_per_column_heading_level_h1"  id="samples_per_column_heading_level_h1"></a>
	<h1>
	Samples per column (heading level h1)

	</h1>


<p class="column8">
        These samples show the range of effects produced by writing
        text beginning in different columns.  The column numbers
        referred to are columns in the source text, not (obviously)
        the output. The column numbering is counted starting from 0,
        <strong class="word">not</strong> <strong class="word">number</strong> <strong class="word">1</strong>.

 Column 1, is undefined and nothing special.

  Column 2, is undefined and nothing special.


<p class="column3">
   Column 3, plain text, with color



  <a name="column_4_next_heading_level_h2" id="column_4_next_heading_level_h2"></a>
  <h2>
      Column 4, Next heading level (h2)

  </h2>




<p>
<p class="column5">
     Column 5, plain text, with color


<p class="column6">
      Column 6, This i used for long quotations. The text uses
      Georgia font, which is designed for web, but which is
      equally good for laser printing font.


<p class="column7"><em><strong>
       Column 7, bold, italic</strong></em>



<p class="column8">
<span class="quote7">Column 7, start and end with double quote. Use for inner TOPICS</span><br>


<p class="column8">
        Column 8, standard text <strong class="word">strong</strong> <em class="word">emphasized</em>


<p class="column9"><strong>
         Column 9, font weight bold, not italic.</strong>



<p class="column10"><em class="quote10">
          Column 10, quotation text, italic serif. This text has been made a
          little smaller and condensed than the rest of the text.
          More quotation text. More quotation text. More quotation text.
          More quotation text. More quotation text. More quotation text.
          More quotation text. More quotation text. More quotation text.
          More quotation text. More quotation text. More quotation text.</em>



<p class="column11">
           Column 11, another color, for questions, exercise texts etc.

<p>
<table class="shade-note">
    <tr>
    <td class="shade-note-attrib" valign="top">
    <b>      Note:</b>
 It is possible to say something important at
      column 12, which is normally reserved for CODE.
      You must supply options --css-code-bg and
      --css-code-note=Note:
    </td>
    </tr>
</table>


<p class="column8">
        Here is the code column 12:

<p>


<table  class="shade-note">
    <tr>
    <td class="shade-note-attrib" valign="top">
    <span class="note12">      Note:</span>  Here is something important to tell you about this code
      This part of the text in first paragrah is rendered differently,
      because it started with magic word <strong class="word">Note:</strong> The rest of the
      pararagraphs are rendered as CODE.
    </td>
    </tr>
</table>

    <table class="shade-normal">
    <tr>
    <td class="shade-normal-attrib" valign="top">
    <pre>
      /* Column 12 code */
      /* 10pt courier navy */
      // col 12 and beyond stay as is to preserve code formatting.

      for( i=0 ; i &lt; 10 ; i++ )
      {
          more();
          whatever();
      }    </pre>
</td>
    </tr>
</table>



  <a name="another_level_2_heading_column_4" id="another_level_2_heading_column_4"></a>
  <h2>
      Another level 2 heading (column 4)

  </h2>




<p>
<p class="column8">
        Here is more ordinary text.

<hr>
	<a name="table_rendering_examples"  id="table_rendering_examples"></a>
	<h1>
	Table rendering examples

	</h1>


<p class="column8">
        These examples make sense only if the options <em class="word">--css-code-bg</em>
        (use gray background for column 12) and
        <em class="word">--css-code-note=Note:</em> have been turned on. If orfer to take
        full advantage of all the possibilities, you should introduce
        yourself to the HTML 4.01 specification and peek the CSS code
        in the generated HTML: the <em class="word">tableclass</em> can take an attribute
        of the embedded default styles.

<p>


<table  class="shade-note">
    <tr>
    <td class="shade-note-attrib" valign="top">
    <span class="note12">      Note:</span>  This is example 1 and <samp class="word">--css-code-note</samp> options
      reads 'First word' in paragraph at column 12 and
      renders it differently. You can attache code right after
      this note, which must occupy only one paragraph
    </td>
    </tr>
</table>

    <table class="shade-normal">
    <tr>
    <td class="shade-normal-attrib" valign="top">
    <pre>
      --css-code-note=REGEXP      Regexp matches 'First word'
      --css-code-bg    </pre>
</td>
    </tr>
</table>


<p class="column8">
        Here is example 2 using table control code
        #t2html::tableborder:1

<p>
<table class="shade-normal">
    <tr>
    <td class="shade-normal-attrib" valign="top">
    <pre>
      for ( i = 0; i++; i &lt; 10 )
      {
          //  Doing something in this loop
      }    </pre></td>
    </tr>
</table>


<p class="column8">
        Here is example 3 using table control code
        #t2html::td:bgcolor=#FFEEFF:tableclass:solid

<p>
<table class="solid">
    <tr>
    <td bgcolor="#FFEEFF" valign="top">
    <pre>
      for ( i = 0; i++; i &lt; 10 )
      {
          //  Doing something in this loop
      }    </pre></td>
    </tr>
</table>


<p class="column8">
        Here is example 4 using table control code
        #t2html::td:bgcolor=#CCFFCC

<p>
<table class="shade-normal">
    <tr>
    <td bgcolor="#CCFFCC" valign="top">
    <pre>
      for ( i = 0; i++; i &lt; 10 )
      {
          //  Doing something in this loop
      }    </pre></td>
    </tr>
</table>


<p class="column8">
        Here is example 5 using table control code. Due to bug in
        Opera 7-9.x, this exmaple may now show correctly. Please use
        Firefox to see the effect.
        #t2html::td:bgcolor=#FFFFFF:tableclass:dashed

<p>
<table class="dashed">
    <tr>
    <td bgcolor="#FFFFFF" valign="top">
    <pre>
      for ( i = 0; i++; i &lt; 10 )
      {
          //  Doing something in this loop
      }    </pre></td>
    </tr>
</table>


<p class="column8">
        Here is example 6 using multiple table control codes. Use
        underscore sccharacter to separate different table attributes
        from each other. The underscore will be vconverted into
        SPACE. The double quotes around the VALUE are not strictly
        required by HTML standard, but they are expected in XML.
        #t2html::td:bgcolor=&quot;#EAEAEA&quot;:table:border=1_border=0_cellpadding=&quot;10&quot;_cellspacing=&quot;0&quot;

<p>
<table border=1 border="0 cellpadding=">
    <tr>
    <td bgcolor="#EAEAEA" valign="top">
    <pre>
      for ( i = 0; i++; i &lt; 10 )
      {
          //  Doing something in this loop
      }    </pre></td>
    </tr>
</table>


<p class="column8">
        Here is example 7 using table control code
        #t2html::td:class=color-navy:table:cellpadding=0 which cancels
        default grey coloring. The cellpadding must be zeroed, around
        the text to make room.

<p>
<table cellpadding="0">
    <tr>
    <td class="color-white" valign="top">
    <pre>
      for ( i = 0; i++; i &lt; 10 )
      {
          //  Doing something in this loop
      }    </pre></td>
    </tr>
</table>

<hr>
	<a name="conversion_program"  id="conversion_program"></a>
	<h1>
	Conversion program

	</h1>


<p class="column8">
        The perl program t2html turns the raw technical text format
        into HTML. Among other things it can produce HTML files with
        an index frame, a main frame, and a master that ties the two
        together. It has features too numerous to list to control the
        output. For details see the perldoc than is embeddedinside the
        program:

<p>
<table class="shade-normal">
    <tr>
    <td class="shade-normal-attrib" valign="top">
    <pre>
      perl -S t2html --help | more    </pre></td>
    </tr>
</table>


<p class="column8">
        The frame aware html pages are generated by adding the
        <em class="word">--html-frame</em> option.



<!--    ......................................................................
    DOCUMENT END BLOCK
    ......................................................................
-->

<hr>
<em    class="footer">
<p>
This file has been automatically generated from plain text file with
<a href="http://freecode.com/projects/perl-text2html">t2html</a>
<br>
Last updated: 2008-09-22 02:15<br>
</em    class="footer">
</body>
</html>