File: pasdoc.html

package info (click to toggle)
pasdoc 0.14.0-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 4,992 kB
  • ctags: 2,308
  • sloc: pascal: 26,085; makefile: 434; sh: 343; xml: 21
file content (1331 lines) | stat: -rw-r--r-- 63,758 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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"  
  "http://www.w3.org/TR/html4/loose.dtd">  
<html > 
<head><title>Manual for pasdoc 0.8</title> 
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> 
<meta name="generator" content="TeX4ht (http://www.cis.ohio-state.edu/~gurari/TeX4ht/mn.html)"> 
<meta name="originator" content="TeX4ht (http://www.cis.ohio-state.edu/~gurari/TeX4ht/mn.html)"> 
<!-- html --> 
<meta name="src" content="pasdoc.tex"> 
<meta name="date" content="2004-04-19 22:02:00"> 
<link rel="stylesheet" type="text/css" href="pasdoc.css"> 
</head><body 
>
   <div class="maketitle">


<h2 class="titleHead">Manual for pasdoc 0.8</h2>
<div class="author" ><span 
class="cmr-12">Marco Schmidt &amp; Carl Eric Cod</span><span 
class="cmr-12">&egrave;re &amp; Johannes Berg</span></div>
<br>
<div class="date" ><span 
class="cmr-12">April 19, 2004</span></div>
   </div>
<!--l. 19--><p class="indent">

   <h3 class="likesectionHead"><a 
 id="x1-1000"></a>Contents</h3>
   <div class="tableofcontents">
   <span class="sectionToc">1 <a 
href="#x1-20001" id="QQ2-1-2">Introduction</a></span>
<br>   <span class="sectionToc">2 <a 
href="#x1-30002" id="QQ2-1-3">Directives</a></span>
<br>   <span class="sectionToc">3 <a 
href="#x1-40003" id="QQ2-1-4">Adding descriptions</a></span>
<br>   <span class="sectionToc">4 <a 
href="#x1-50004" id="QQ2-1-5">Formatting your comments</a></span>
<br>   &nbsp;<span class="subsectionToc">4.1 <a 
href="#x1-60004.1" id="QQ2-1-6">@</a></span>
<br>   &nbsp;<span class="subsectionToc">4.2 <a 
href="#x1-70004.2" id="QQ2-1-7">abstract</a></span>
<br>   &nbsp;<span class="subsectionToc">4.3 <a 
href="#x1-80004.3" id="QQ2-1-8">author</a></span>
<br>   &nbsp;<span class="subsectionToc">4.4 <a 
href="#x1-90004.4" id="QQ2-1-9">classname, inherited, name</a></span>
<br>   &nbsp;<span class="subsectionToc">4.5 <a 
href="#x1-100004.5" id="QQ2-1-10">code</a></span>
<br>   &nbsp;<span class="subsectionToc">4.6 <a 
href="#x1-110004.6" id="QQ2-1-11">created</a></span>
<br>   &nbsp;<span class="subsectionToc">4.7 <a 
href="#x1-120004.7" id="QQ2-1-12">cvs</a></span>
<br>   &nbsp;<span class="subsectionToc">4.8 <a 
href="#x1-130004.8" id="QQ2-1-13">exclude</a></span>
<br>   &nbsp;<span class="subsectionToc">4.9 <a 
href="#x1-140004.9" id="QQ2-1-14">false</a></span>
<br>   &nbsp;<span class="subsectionToc">4.10 <a 
href="#x1-150004.10" id="QQ2-1-15">html</a></span>
<br>   &nbsp;<span class="subsectionToc">4.11 <a 
href="#x1-160004.11" id="QQ2-1-16">lastmod</a></span>
<br>   &nbsp;<span class="subsectionToc">4.12 <a 
href="#x1-170004.12" id="QQ2-1-17">link</a></span>
<br>   &nbsp;<span class="subsectionToc">4.13 <a 
href="#x1-180004.13" id="QQ2-1-18">longcode</a></span>
<br>   &nbsp;<span class="subsectionToc">4.14 <a 
href="#x1-190004.14" id="QQ2-1-19">nil</a></span>
<br>   &nbsp;<span class="subsectionToc">4.15 <a 
href="#x1-200004.15" id="QQ2-1-20">param</a></span>
<br>   &nbsp;<span class="subsectionToc">4.16 <a 
href="#x1-210004.16" id="QQ2-1-21">raises</a></span>
<br>   &nbsp;<span class="subsectionToc">4.17 <a 
href="#x1-220004.17" id="QQ2-1-22">return, returns</a></span>
<br>   &nbsp;<span class="subsectionToc">4.18 <a 
href="#x1-230004.18" id="QQ2-1-23">true</a></span>
<br>   <span class="sectionToc">5 <a 
href="#x1-240005" id="QQ2-1-24">Switches</a></span>
<br>   &nbsp;<span class="subsectionToc">5.1 <a 
href="#x1-250005.1" id="QQ2-1-25">Documentation file format</a></span>
<br>   &nbsp;&nbsp;<span class="subsubsectionToc">5.1.1 <a 
href="#x1-260005.1.1" id="QQ2-1-26">HTML</a></span>
<br>   &nbsp;&nbsp;<span class="subsubsectionToc">5.1.2 <a 
href="#x1-270005.1.2" id="QQ2-1-27">htmlhelp</a></span>
<br>   &nbsp;&nbsp;<span class="subsubsectionToc">5.1.3 <a 
href="#x1-280005.1.3" id="QQ2-1-28"><span class="LATEX">L<span class="A">A</span><span class="TEX">T<span 
class="E">E</span>X</span></span></a></span>
<br>   &nbsp;&nbsp;<span class="subsubsectionToc">5.1.4 <a 
href="#x1-290005.1.4" id="QQ2-1-29">LaTeX2rtf</a></span>
<br>   &nbsp;<span class="subsectionToc">5.2 <a 
href="#x1-300005.2" id="QQ2-1-30">Format-specific switches</a></span>
<br>   &nbsp;&nbsp;<span class="subsubsectionToc">5.2.1 <a 
href="#x1-310005.2.1" id="QQ2-1-31">No generator information</a></span>
<br>   &nbsp;&nbsp;<span class="subsubsectionToc">5.2.2 <a 
href="#x1-320005.2.2" id="QQ2-1-32">Specify name of document</a></span>
<br>   &nbsp;&nbsp;<span class="subsubsectionToc">5.2.3 <a 
href="#x1-330005.2.3" id="QQ2-1-33">Specify footers and headers to use</a></span>
<br>   &nbsp;<span class="subsectionToc">5.3 <a 
href="#x1-340005.3" id="QQ2-1-34">Comment Marker switches</a></span>
<br>   &nbsp;<span class="subsectionToc">5.4 <a 
href="#x1-350005.4" id="QQ2-1-35">Output language switches</a></span>
<br>   &nbsp;<span class="subsectionToc">5.5 <a 
href="#x1-360005.5" id="QQ2-1-36">Other switches</a></span>
<br>   &nbsp;&nbsp;<span class="subsubsectionToc">5.5.1 <a 
href="#x1-370005.5.1" id="QQ2-1-37">Include / Exclude class Members by visiblity</a></span>
<br>   &nbsp;&nbsp;<span class="subsubsectionToc">5.5.2 <a 
href="#x1-380005.5.2" id="QQ2-1-38">Output directory</a></span>

<br>   &nbsp;&nbsp;<span class="subsubsectionToc">5.5.3 <a 
href="#x1-390005.5.3" id="QQ2-1-39">Read file names from file</a></span>
<br>   &nbsp;&nbsp;<span class="subsubsectionToc">5.5.4 <a 
href="#x1-400005.5.4" id="QQ2-1-40">Change verbosity level</a></span>
<br>   &nbsp;&nbsp;<span class="subsubsectionToc">5.5.5 <a 
href="#x1-410005.5.5" id="QQ2-1-41">Show help</a></span>
<br>   &nbsp;&nbsp;<span class="subsubsectionToc">5.5.6 <a 
href="#x1-420005.5.6" id="QQ2-1-42">Specify a directive</a></span>
<br>   &nbsp;&nbsp;<span class="subsubsectionToc">5.5.7 <a 
href="#x1-430005.5.7" id="QQ2-1-43">Specify an include file path</a></span>
<br>   &nbsp;&nbsp;<span class="subsubsectionToc">5.5.8 <a 
href="#x1-440005.5.8" id="QQ2-1-44">Specify directive file</a></span>
<br>   &nbsp;&nbsp;<span class="subsubsectionToc">5.5.9 <a 
href="#x1-450005.5.9" id="QQ2-1-45">Set title of document</a></span>
<br>   &nbsp;&nbsp;<span class="subsubsectionToc">5.5.10 <a 
href="#x1-460005.5.10" id="QQ2-1-46">Include uses list</a></span>
<br>   &nbsp;&nbsp;<span class="subsubsectionToc">5.5.11 <a 
href="#x1-470005.5.11" id="QQ2-1-47">Full link output</a></span>
<br>   &nbsp;&nbsp;<span class="subsubsectionToc">5.5.12 <a 
href="#x1-480005.5.12" id="QQ2-1-48">Non documented switches</a></span>
<br>   <span class="sectionToc">6 <a 
href="#x1-490006" id="QQ2-1-49">Known problems</a></span>
<br>   &nbsp;<span class="subsectionToc">6.1 <a 
href="#x1-500006.1" id="QQ2-1-50">Documentation of program files</a></span>
<br>   &nbsp;<span class="subsectionToc">6.2 <a 
href="#x1-510006.2" id="QQ2-1-51">Records</a></span>
<br>   &nbsp;<span class="subsectionToc">6.3 <a 
href="#x1-520006.3" id="QQ2-1-52">Non-unique identifiers</a></span>
<br>   <span class="sectionToc">7 <a 
href="#x1-530007" id="QQ2-1-53">Adding support for another output format</a></span>
<br>   <span class="sectionToc">8 <a 
href="#x1-540008" id="QQ2-1-54">Credits</a></span>
   </div>
<!--l. 23--><p class="indent">

   <h3 class="sectionHead"><span class="titlemark">1   </span> <a 
 id="x1-20001"></a>Introduction</h3>
<!--l. 27--><p class="noindent">Pasdoc creates documentation for Pascal unit files.
<!--l. 29--><p class="indent">   Descriptions for variables, constants, types (called &#8217;items&#8217; from now
on) are taken from comments stored in the interface sections of unit
source code files, each comment must be placed directly before the item&#8217;s
declaration.
<!--l. 33--><p class="indent">   This way, you as a programmer can easily generate reference manuals of your
libraries without having to deal with the details of document formats like HTML
or <span class="LATEX">L<span class="A">A</span><span class="TEX">T<span 
class="E">E</span>X</span></span>.
<!--l. 37--><p class="indent">   Moreover, you can edit the source code and its descriptions in one place, no
need to add or modify explanations in other files. The rest is done automatically,
you should write a script / batch file that does the actual call to pasdoc...
Download the latest version from

   <table width="100%" 
class="verbatim"><tr class="verbatim"><td 
class="verbatim"><div class="verbatim">
http://pasdoc.sourceforge.net.
</div>
</td></tr></table>
<!--l. 44--><p class="nopar"> For an example of source code that can be used with pasdoc, try the pasdoc
sources themselves - type <span 
class="cmtt-10x-x-109">pasdoc[.exe] --format html *.pas </span>to generate
HTML documentation.
<!--l. 49--><p class="indent">   You can compile pasdoc with Free Pascal (version 1.0 or higher), as well as
with Delphi and Kylix.
<!--l. 52--><p class="noindent">
   <h3 class="sectionHead"><span class="titlemark">2   </span> <a 
 id="x1-30002"></a>Directives</h3>
<!--l. 54--><p class="noindent">As you may know, Pascal allows for <span 
class="cmti-10x-x-109">directives </span>in the source code. These are
comments that contain commands for the compiler introduced by the dollar
sign.
<!--l. 58--><p class="indent">   To distinguish different compilers, libraries or development stages, <span 
class="cmti-10x-x-109">conditional</span>
<span 
class="cmti-10x-x-109">directives </span>make it possible to make the compiler ignore part of the file. An
example:

   <table width="100%" 
class="verbatim"><tr class="verbatim"><td 
class="verbatim"><div class="verbatim">
&nbsp;&nbsp;unit&nbsp;SampleUnit;
&nbsp;<br />
&nbsp;<br />&nbsp;&nbsp;{$ifdef&nbsp;WIN32}
&nbsp;<br />&nbsp;&nbsp;uses&nbsp;Windows,&nbsp;WinProcs;
&nbsp;<br />&nbsp;&nbsp;procedure&nbsp;WindowMove(H:&nbsp;TWindowHandle;&nbsp;DX,&nbsp;DY:&nbsp;Integer);
&nbsp;<br />&nbsp;&nbsp;procedure&nbsp;WindowPrintText(H:&nbsp;TWindowHandle;&nbsp;X,&nbsp;Y:&nbsp;Integer;&nbsp;S:&nbsp;String);
&nbsp;<br />&nbsp;&nbsp;{$else}
&nbsp;<br />&nbsp;&nbsp;procedure&nbsp;ClearConsole;
&nbsp;<br />&nbsp;&nbsp;procedure&nbsp;PrintText(S:&nbsp;String);
&nbsp;<br />&nbsp;&nbsp;{$endif}
&nbsp;<br />
&nbsp;<br />&nbsp;&nbsp;{$define&nbsp;DEBUG}
&nbsp;<br />&nbsp;&nbsp;{$undef&nbsp;OPTIMIZE}
</div>
</td></tr></table>
<!--l. 77--><p class="nopar">
<!--l. 79--><p class="indent">   The <span 
class="cmtt-10x-x-109">ifdef </span>part checks if a conditional directive called <span 
class="cmtt-10x-x-109">WIN32 </span>is currently
defined (that would be the case for Delphi or FPC/Win32). If this is true, all
code until <span 
class="cmtt-10x-x-109">else </span>or <span 
class="cmtt-10x-x-109">endif </span>are compiled, everything between <span 
class="cmtt-10x-x-109">else </span>and <span 
class="cmtt-10x-x-109">endif </span>is
ignored. The contrary would apply if the directive is not defined, e.g. under
FPC/DOS or Borland Pascal. These statements can also be nested. Using <span 
class="cmtt-10x-x-109">define</span>
and <span 
class="cmtt-10x-x-109">undef</span>, a programmer can add and delete directives, in the above example
DEBUG and OPTIMIZE.
<!--l. 89--><p class="indent">   As pasdoc loads Pascal files in a similar way a compiler does, it must
be able to regard conditional directives. All define and undef parts are
evaluated by pasdoc, modifying an internal list of directives as source code is
parsed.
<!--l. 93--><p class="indent">   Different from a real compiler, pasdoc starts with an empty list of conditional
directives. To get back to the above example, if you want to write documentation
for the <span 
class="cmtt-10x-x-109">WIN32 </span>code part, you must explicitly tell pasdoc that you want this
directive defined.
<!--l. 98--><p class="indent">   You can do so using the <span 
class="cmti-10x-x-109">Specify directive </span>or <span 
class="cmti-10x-x-109">Add directives from file </span>switch
(see sections <a 
href="#x1-420005.5.6">5.5.6<!--tex4ht:ref: specifydirective --></a> and <a 
href="#x1-440005.5.8">5.5.8<!--tex4ht:ref: specifydirectives --></a>).
<!--l. 101--><p class="indent">   Next to those directives already presented, pasdoc also supports include
files:

   <table width="100%" 
class="verbatim"><tr class="verbatim"><td 
class="verbatim"><div class="verbatim">
type&nbsp;TInteger&nbsp;=&nbsp;Integer;
&nbsp;<br />
&nbsp;<br />{$I&nbsp;numbers.inc}
&nbsp;<br />
&nbsp;<br />const&nbsp;MAX_FILES&nbsp;=&nbsp;12;
</div>
</td></tr></table>
<!--l. 110--><p class="nopar">
<!--l. 112--><p class="indent">   In the above code, pasdoc would parse <span 
class="cmtt-10x-x-109">TInteger</span>, get the include directive
and start parsing the include file <span 
class="cmtt-10x-x-109">numbers.inc</span>. This file could contain other
directives, types or whatever. It is treated as it would be treated by any Pascal
compiler.
<!--l. 117--><p class="indent">   Pascal compilers also know <span 
class="cmti-10x-x-109">switch directives</span>. These are boolean options,
either on or off. They can be checked similar to conditional directives with the
<span 
class="cmtt-10x-x-109">$ifopt </span>directive. Pasdoc does not yet fully support these, but at least does not
give up when it encounters one.
<!--l. 124--><p class="noindent">
   <h3 class="sectionHead"><span class="titlemark">3   </span> <a 
 id="x1-40003"></a>Adding descriptions</h3>
<!--l. 126--><p class="noindent">You can provide documentation for
     <ul class="itemize1">
     <li class="itemize">types (including enumerations),
     </li>
     <li class="itemize">variables,
     </li>
     <li class="itemize">constants,
     </li>
     <li class="itemize">classes, interfances, objects,
     </li>
     <li class="itemize">procedures, functions and

     </li>
     <li class="itemize">units.</li></ul>
<!--l. 137--><p class="indent">   Providing a description for the different items is fairly easy. You simply need
to provide a comment containing the description before the name of the item
itself.
<!--l. 141--><p class="indent">   For units, the comment declaration must be done before the <span 
class="cmtt-10x-x-109">unit </span>keyword.
Example:

   <table width="100%" 
class="verbatim"><tr class="verbatim"><td 
class="verbatim"><div class="verbatim">
type
&nbsp;<br />&nbsp;&nbsp;{&nbsp;This&nbsp;record&nbsp;type&nbsp;stores&nbsp;all&nbsp;information&nbsp;on&nbsp;a&nbsp;customer,&nbsp;including
&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;name,&nbsp;age&nbsp;and&nbsp;gender.&nbsp;}
&nbsp;<br />&nbsp;&nbsp;TCustomer&nbsp;=&nbsp;record
&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;Name:&nbsp;String;
&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;Age:&nbsp;Byte;
&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;Gender:&nbsp;Boolean;
&nbsp;<br />&nbsp;&nbsp;end;
&nbsp;<br />
&nbsp;<br />{&nbsp;Initializes&nbsp;a&nbsp;TCustomer&nbsp;record&nbsp;with&nbsp;the&nbsp;given&nbsp;parameters.&nbsp;}
&nbsp;<br />procedure&nbsp;InitCustomer(Name:&nbsp;String;&nbsp;Age:&nbsp;Byte;
&nbsp;<br />&nbsp;&nbsp;Gender:&nbsp;Boolean;&nbsp;var&nbsp;Customer:&nbsp;TCustomer);
</div>
</td></tr></table>
<!--l. 156--><p class="nopar">
<!--l. 158--><p class="indent">   It is possible to specify that items will only be documented when
certain comment markers are present at the start of the comment. Please
refer to <a 
href="#x1-340005.3">5.3<!--tex4ht:ref: specifymarkers --></a> for further information. Furthermore, undocumented items
may or may not appear in the final document, depending on the output
format.
<!--l. 164--><p class="indent">   An interesting feature of pasdoc is its ability to link items from within
comments. If you are currently writing about an array of integers <span 
class="cmtt-10x-x-109">TIntArray</span>
you&#8217;ve declared as a type, you might mention that the number of values it can
store is specified in the constant <span 
class="cmtt-10x-x-109">MAX</span><span 
class="cmtt-10x-x-109">_INTS</span>. You&#8217;ve probably already
documented this constant when you declared it earlier in the same or another
unit. Now, if you write <span 
class="cmtt-10x-x-109">@link(MAX</span><span 
class="cmtt-10x-x-109">_INTS) </span>instead of simply <span 
class="cmtt-10x-x-109">MAX</span><span 
class="cmtt-10x-x-109">_INTS</span>,
pasdoc knows that you are referring to another item it has found or will
find in the list of units you gave to it. After all input files have been
parsed, pasdoc will start substituting all occurrences of <span 
class="cmtt-10x-x-109">@link(something)</span>
with &#8221;real&#8221; links. Depending on the type of output, these links could be
hyperlinks (in HTML) or page references (in <span class="LATEX">L<span class="A">A</span><span class="TEX">T<span 
class="E">E</span>X</span></span>). If the current output
format is HTML, the description of <span 
class="cmtt-10x-x-109">TIntArray </span>would contain a link to
<span 
class="cmtt-10x-x-109">MAX</span><span 
class="cmtt-10x-x-109">_INTS</span>. Viewing <span 
class="cmtt-10x-x-109">TIntArray</span>&#8217;s description in your favourite web browser
you&#8217;d now be able to click on <span 
class="cmtt-10x-x-109">MAX</span><span 
class="cmtt-10x-x-109">_INTS </span>and the browser would jump
to the definition of <span 
class="cmtt-10x-x-109">MAX</span><span 
class="cmtt-10x-x-109">_INTS</span>, where you&#8217;d find more information on
it.

<!--l. 183--><p class="indent">   If pasdoc cannot resolve a link (for whatever reasons), it will issue a warning
to standard output and will write the content of <span 
class="cmtt-10x-x-109">@link() </span>to the documentation
file, not as a link, but in a special font.
<!--l. 187--><p class="noindent">
   <h3 class="sectionHead"><span class="titlemark">4   </span> <a 
 id="x1-50004"></a>Formatting your comments</h3>
<!--l. 189--><p class="noindent">All comments recognize special directives that are used for different purposes.
Each of these special directives starts with the at character <span 
class="cmtt-10x-x-109">@</span>, followed by and
identifier and optinally followed by text between parentheses.
<!--l. 194--><p class="indent">   As an example, lets take the well-known <span 
class="cmtt-10x-x-109">DOS </span>unit. Its top part could look like
this:

   <table width="100%" 
class="verbatim"><tr class="verbatim"><td 
class="verbatim"><div class="verbatim">
{
&nbsp;<br />@abstract(provides&nbsp;access&nbsp;to&nbsp;file&nbsp;and&nbsp;directory&nbsp;operations)
&nbsp;<br />@author(John&nbsp;Doe&nbsp;&lt;doe@john-doe.com&gt;)
&nbsp;<br />@created(July&nbsp;12,&nbsp;1997)
&nbsp;<br />@lastmod(June&nbsp;20,&nbsp;1999)
&nbsp;<br />The&nbsp;DOS&nbsp;unit&nbsp;provides&nbsp;functionality&nbsp;to&nbsp;get&nbsp;information&nbsp;on&nbsp;files&nbsp;and
&nbsp;<br />directories&nbsp;and&nbsp;to&nbsp;modify&nbsp;some&nbsp;of&nbsp;this&nbsp;information.
&nbsp;<br />This&nbsp;includes&nbsp;disk&nbsp;space&nbsp;(e.g.&nbsp;@link(DiskFree)),&nbsp;access&nbsp;rights,&nbsp;file
&nbsp;<br />and&nbsp;directory&nbsp;lists,&nbsp;changing&nbsp;the&nbsp;current&nbsp;directory,&nbsp;deleting&nbsp;files
&nbsp;<br />and&nbsp;directories&nbsp;and&nbsp;creating&nbsp;directories.
&nbsp;<br />Some&nbsp;of&nbsp;the&nbsp;functions&nbsp;are&nbsp;not&nbsp;available&nbsp;on&nbsp;all&nbsp;operating&nbsp;systems.
&nbsp;<br />}
&nbsp;<br />unit&nbsp;DOS;
</div>
</td></tr></table>
<!--l. 210--><p class="nopar">
<!--l. 212--><p class="indent">   Pasdoc would read this comment and store it with the unit information. After
all Pascal source code files you gave to pasdoc have been read, pasdoc will try to
process all tags, i.e., all words introduced by a <span 
class="cmtt-10x-x-109">@ </span>character.
<!--l. 217--><p class="indent">   If you want to use the character <span 
class="cmtt-10x-x-109">@ </span>itself, you must write it twice so that
pasdoc knows you don&#8217;t want to specify a tag.
<!--l. 220--><p class="indent">   Note in the example above that the character does not need this special
treatment within the parentheses, as shown in the author tag at the example of
the email address.
<!--l. 224--><p class="indent">   Following is a list of all tags that you may use in pasdoc. A tag like <span 
class="cmtt-10x-x-109">@link</span>
must always be followed by an opening and then a closing parenthesis, even if
you add nothing between them.
<!--l. 228--><p class="indent">   The following tags are supported:
     <dl class="description"><dt class="description">
<span 
class="cmbx-10x-x-109">@@</span> </dt><dd 
class="description">represents the @ character
     </dd><dt class="description">
<span 
class="cmbx-10x-x-109">@abstract</span> </dt><dd 
class="description">This  is  an  abstract  of  the  description  (nowadays  called
     &#8221;management summary&#8221;)
     </dd><dt class="description">
<span 
class="cmbx-10x-x-109">@author</span> </dt><dd 
class="description">Treat the argument as an author&#8217;s name and email address

     </dd><dt class="description">
<span 
class="cmbx-10x-x-109">@classname</span> </dt><dd 
class="description">PasDoc inserts the class name here.
     </dd><dt class="description">
<span 
class="cmbx-10x-x-109">@code</span> </dt><dd 
class="description">Treat argument as code example
     </dd><dt class="description">
<span 
class="cmbx-10x-x-109">@created</span> </dt><dd 
class="description">Creation date of item
     </dd><dt class="description">
<span 
class="cmbx-10x-x-109">@cvs</span> </dt><dd 
class="description">The argument is related to source versioning with e.g. cvs
     </dd><dt class="description">
<span 
class="cmbx-10x-x-109">@exclude</span> </dt><dd 
class="description">The current item is to be excluded from documentation
     </dd><dt class="description">
<span 
class="cmbx-10x-x-109">@false</span> </dt><dd 
class="description">PasDoc inserts the specially formatted text &#8217;false&#8217; here.
     </dd><dt class="description">
<span 
class="cmbx-10x-x-109">@html</span> </dt><dd 
class="description">Inserts html code in the output
     </dd><dt class="description">
<span 
class="cmbx-10x-x-109">@inherited</span> </dt><dd 
class="description">PasDoc inserts the name of the ancestor class here.
     </dd><dt class="description">
<span 
class="cmbx-10x-x-109">@lastmod</span> </dt><dd 
class="description">last modified date of item
     </dd><dt class="description">
<span 
class="cmbx-10x-x-109">@link</span> </dt><dd 
class="description">The argument is the name of another entity, PasDoc will add a link
     to it here.
     </dd><dt class="description">
<span 
class="cmbx-10x-x-109">@longcode</span> </dt><dd 
class="description">Format the text and output it in fixed width font, with correct
     formatting.
     </dd><dt class="description">
<span 
class="cmbx-10x-x-109">@name</span> </dt><dd 
class="description">PasDoc  inserts  the  name  of  the  item  (class,  object,  function,
     variable...) here
     </dd><dt class="description">
<span 
class="cmbx-10x-x-109">@nil</span> </dt><dd 
class="description">PasDoc inserts the specially formatted text &#8217;nil&#8217; here.
     </dd><dt class="description">
<span 
class="cmbx-10x-x-109">@param</span> </dt><dd 
class="description">Treat  first  argument  as  parameter  name  and  all  following
     arguments as the description

     </dd><dt class="description">
<span 
class="cmbx-10x-x-109">@raises</span> </dt><dd 
class="description">Treat first argument as exception name and all following arguments
     as the description
     </dd><dt class="description">
<span 
class="cmbx-10x-x-109">@return, @returns</span> </dt><dd 
class="description">Description of a function&#8217;s return value
     </dd><dt class="description">
<span 
class="cmbx-10x-x-109">@true</span> </dt><dd 
class="description">PasDoc inserts the specially formatted text &#8217;true&#8217; here.</dd></dl>
<!--l. 258--><p class="noindent">
   <h4 class="subsectionHead"><span class="titlemark">4.1   </span> <a 
 id="x1-60004.1"></a>@</h4>
<!--l. 259--><p class="noindent">Represents the <span 
class="cmtt-10x-x-109">@ </span>character, for example if you want to use one of the tags
literally
<!--l. 262--><p class="noindent">
   <h4 class="subsectionHead"><span class="titlemark">4.2   </span> <a 
 id="x1-70004.2"></a>abstract</h4>
<!--l. 264--><p class="noindent">For some item types like classes or units you may write very large descriptions to
give an adequate introduction. However, these large texts are not appropriate in
an overview list. Use the abstract tag to give a short explanation of what an item
is about. One row of text is a good rule of thumb. Of course, there should only be
one abstract tag per description.
<!--l. 272--><p class="indent">   The abstract text will appear in the overview section of the documentation (if
the document format supports this overview section), and will also appear as the
first paragraph of the item full documentation.
<!--l. 277--><p class="noindent">
   <h4 class="subsectionHead"><span class="titlemark">4.3   </span> <a 
 id="x1-80004.3"></a>author</h4>
<!--l. 279--><p class="noindent">For each author who participated in writing an item, one author tag should be
added. The format of the author tag should conform to the following specification
: <span 
class="cmtt-10x-x-109">@author(Name &lt;URI&gt;)</span>
<!--l. 283--><p class="indent">   Author tags will only result in documentation output for classes, interfaces,
objects and units.
<!--l. 286--><p class="indent">   Example:

   <table width="100%" 
class="verbatim"><tr class="verbatim"><td 
class="verbatim"><div class="verbatim">
@author(Johannes&nbsp;Berg&nbsp;&lt;email@address.here&gt;)
</div>
</td></tr></table>
<!--l. 289--><p class="nopar">
<!--l. 291--><p class="noindent">
   <h4 class="subsectionHead"><span class="titlemark">4.4   </span> <a 
 id="x1-90004.4"></a>classname, inherited, name</h4>
<!--l. 293--><p class="noindent">PasDoc uses the tags <span 
class="cmtt-10x-x-109">@inherited</span>, <span 
class="cmtt-10x-x-109">@classname </span>and <span 
class="cmtt-10x-x-109">@name </span>as placeholders for the
names of the ancestor class, current class and name of the current item
respectively.
<!--l. 297--><p class="indent">   Example:

   <table width="100%" 
class="verbatim"><tr class="verbatim"><td 
class="verbatim"><div class="verbatim">
&nbsp;<br />{&nbsp;@name&nbsp;is&nbsp;a&nbsp;method&nbsp;of&nbsp;@classname&nbsp;which&nbsp;overrides&nbsp;the&nbsp;method&nbsp;of
&nbsp;<br />&nbsp;&nbsp;@inherited&nbsp;to&nbsp;do&nbsp;something&nbsp;completely&nbsp;different...}
</div>
</td></tr></table>
<!--l. 302--><p class="nopar">
<!--l. 304--><p class="noindent">
   <h4 class="subsectionHead"><span class="titlemark">4.5   </span> <a 
 id="x1-100004.5"></a>code</h4>
<!--l. 306--><p class="noindent">PasDoc uses the tag @code to mark example code which is preformatted and
should not be changed in the output. It will usually appear in a teletype font in
the final documentation.
<!--l. 310--><p class="indent">   Example:

   <table width="100%" 
class="verbatim"><tr class="verbatim"><td 
class="verbatim"><div class="verbatim">
{:&nbsp;how&nbsp;to&nbsp;declare&nbsp;a&nbsp;variable.
&nbsp;<br />Example:
&nbsp;<br />@code(
&nbsp;<br />var
&nbsp;<br />&nbsp;&nbsp;SomeVariable:&nbsp;SomeType;)
&nbsp;<br />}
</div>
</td></tr></table>
<!--l. 318--><p class="nopar">
<!--l. 321--><p class="noindent">
   <h4 class="subsectionHead"><span class="titlemark">4.6   </span> <a 
 id="x1-110004.6"></a>created</h4>
<!--l. 323--><p class="noindent">This tag should contain the date the item was created. At most one created tag
should be in a description. Created tags will only result in documentation output
for classes, interfaces, objects and units. There is no special format that must be
followed.
<!--l. 329--><p class="noindent">
   <h4 class="subsectionHead"><span class="titlemark">4.7   </span> <a 
 id="x1-120004.7"></a>cvs</h4>
<!--l. 331--><p class="noindent">This tag is used to extract the last modification date and authors of the item.
The parameter of this tag should conform to the <span 
class="cmmi-10x-x-109">Author </span>: <span 
class="cmmi-10x-x-109">ccodere </span>or
<span 
class="cmmi-10x-x-109">Date </span>: 2004<span 
class="cmmi-10x-x-109">/</span>04<span 
class="cmmi-10x-x-109">/</span>2002 : 01 : 52 string of cvs or rcs.

   <table width="100%" 
class="verbatim"><tr class="verbatim"><td 
class="verbatim"><div class="verbatim">
@cvs($Date: 2004-04-20 04:02:54 +0200 (wto) $)
</div>
</td></tr></table>
<!--l. 338--><p class="nopar">
<!--l. 340--><p class="noindent">
   <h4 class="subsectionHead"><span class="titlemark">4.8   </span> <a 
 id="x1-130004.8"></a>exclude</h4>
<!--l. 342--><p class="noindent">If an exclude tag is found in a description, the item will not appear in the
documentation. As a logical consequence, no information except the exclude tag
itself should be written to the description. Whenever high-level items like units or
classes are excluded from the documentation process, all items contained in them
will not appear as well, e.g. constants or functions in an excluded unit or
methods and fields in an excluded class.
<!--l. 351--><p class="indent">   The following example will produce no documentation, as the entire unit will
be excluded from the documentation process.
<!--l. 354--><p class="indent">   Example:

   <table width="100%" 
class="verbatim"><tr class="verbatim"><td 
class="verbatim"><div class="verbatim">
{@exclude&nbsp;}
&nbsp;<br />unit&nbsp;myunit;
&nbsp;<br />
&nbsp;<br />interface
&nbsp;<br />
&nbsp;<br />procedure&nbsp;hello;
&nbsp;<br />
&nbsp;<br />implementation
&nbsp;<br />
&nbsp;<br />procedure&nbsp;hello;
&nbsp;<br />begin
&nbsp;<br />&nbsp;WriteLn('Hello');
&nbsp;<br />end;
&nbsp;<br />
&nbsp;<br />end.
</div>
</td></tr></table>
<!--l. 371--><p class="nopar">
<!--l. 374--><p class="noindent">
   <h4 class="subsectionHead"><span class="titlemark">4.9   </span> <a 
 id="x1-140004.9"></a>false</h4>
<!--l. 375--><p class="noindent">PasDoc inserts the specially formatted text &#8217;false&#8217; here at the location of the tag.
This tag does not have any parameters.
<!--l. 379--><p class="noindent">
   <h4 class="subsectionHead"><span class="titlemark">4.10   </span> <a 
 id="x1-150004.10"></a>html</h4>
<!--l. 380--><p class="noindent">Pasdoc directly outputs the text that is between parentheses, without any
conversion for the html output format. For other formats, the text is converted to
standard text.
<!--l. 384--><p class="indent">   There is no syntax checking on the validity of the HTML syntax.
<!--l. 386--><p class="indent">   If there are no parentheses, <span 
class="cmtt-10x-x-109">@HTML </span>is directly written to the output
documentation.

<!--l. 389--><p class="noindent">
   <h4 class="subsectionHead"><span class="titlemark">4.11   </span> <a 
 id="x1-160004.11"></a>lastmod</h4>
<!--l. 391--><p class="noindent">This tag should contain the date the item was last modified. At most one created
tag should be in a description. Lastmod tags will only result in documentation
output for classes, interfaces, objects and units. There is no special format that
must be followed.
<!--l. 397--><p class="noindent">
   <h4 class="subsectionHead"><span class="titlemark">4.12   </span> <a 
 id="x1-170004.12"></a>link</h4>
<!--l. 399--><p class="noindent">Use this tag to make your documentation more convenient to the reader.
Whenever you mention another item in the description of an item, enclose the
name of the mentioned item in a link tag, e.g.
<br class="newline"><span 
class="cmtt-10x-x-109">@link(GetName)</span>.
<br class="newline">This will result in a hyperlink in HTML and a page reference in <span class="LATEX">L<span class="A">A</span><span class="TEX">T<span 
class="E">E</span>X</span></span>.
<!--l. 406--><p class="noindent">
   <h4 class="subsectionHead"><span class="titlemark">4.13   </span> <a 
 id="x1-180004.13"></a>longcode</h4>
<!--l. 408--><p class="noindent">Use this tag to output code, and pre-formatted text. The output text will closely
ressemble the text typed, and will be represented in a fixed width font. In
the case of pascal code typed within this tag, it will be pretty-printed
first.
<!--l. 413--><p class="indent">   To be able to put special characters in this tag, the tag should be followed by
a # and finished with a # before the closing parentheses.
<!--l. 417--><p class="indent">   Example:

   <table width="100%" 
class="verbatim"><tr class="verbatim"><td 
class="verbatim"><div class="verbatim">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;@longCode(#
&nbsp;<br />procedure&nbsp;TForm1.FormCreate(Sender:&nbsp;TObject);
&nbsp;<br />var
&nbsp;<br />&nbsp;&nbsp;i:&nbsp;integer;
&nbsp;<br />begin
&nbsp;<br />&nbsp;&nbsp;//&nbsp;Note&nbsp;that&nbsp;your&nbsp;comments&nbsp;are&nbsp;formatted.
&nbsp;<br />&nbsp;&nbsp;{$H+}&nbsp;//&nbsp;You&nbsp;can&nbsp;even&nbsp;include&nbsp;compiler&nbsp;directives.
&nbsp;<br />&nbsp;&nbsp;//&nbsp;reserved&nbsp;words&nbsp;are&nbsp;formatted&nbsp;in&nbsp;bold.
&nbsp;<br />&nbsp;&nbsp;for&nbsp;i&nbsp;:=&nbsp;1&nbsp;to&nbsp;10&nbsp;do
&nbsp;<br />&nbsp;&nbsp;begin
&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;It&nbsp;is&nbsp;OK&nbsp;to&nbsp;include&nbsp;pseudo-code&nbsp;like&nbsp;this&nbsp;line.
&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;//&nbsp;It&nbsp;will&nbsp;be&nbsp;formatted&nbsp;as&nbsp;if&nbsp;it&nbsp;were&nbsp;meaningful&nbsp;pascal&nbsp;code.
&nbsp;<br />&nbsp;&nbsp;end;
&nbsp;<br />end;
&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;#)
</div>
</td></tr></table>
<!--l. 434--><p class="nopar">
<!--l. 437--><p class="noindent">
   <h4 class="subsectionHead"><span class="titlemark">4.14   </span> <a 
 id="x1-190004.14"></a>nil</h4>
<!--l. 439--><p class="noindent">PasDoc inserts the specially formatted text &#8217;nil&#8217; here. This tag does not have any
parameters.
<!--l. 442--><p class="noindent">
   <h4 class="subsectionHead"><span class="titlemark">4.15   </span> <a 
 id="x1-200004.15"></a>param</h4>
<!--l. 444--><p class="noindent">Treats first argument as parameter name and all following text as the description
of this parameter.
<!--l. 447--><p class="indent">   Example:

   <table width="100%" 
class="verbatim"><tr class="verbatim"><td 
class="verbatim"><div class="verbatim">
{&nbsp;A&nbsp;small&nbsp;description
&nbsp;<br />&nbsp;&nbsp;@param(Filepath&nbsp;The&nbsp;file&nbsp;to&nbsp;open)
&nbsp;<br />}
&nbsp;<br />constructor&nbsp;Init(FilePath&nbsp;:&nbsp;String);
</div>
</td></tr></table>
<!--l. 453--><p class="nopar">
<!--l. 456--><p class="noindent">
   <h4 class="subsectionHead"><span class="titlemark">4.16   </span> <a 
 id="x1-210004.16"></a>raises</h4>
<!--l. 458--><p class="noindent">Treats the first argument as exception name and all following text as the
description for this exception.
<!--l. 461--><p class="indent">   Example:

   <table width="100%" 
class="verbatim"><tr class="verbatim"><td 
class="verbatim"><div class="verbatim">
{&nbsp;A&nbsp;small&nbsp;description
&nbsp;<br />&nbsp;&nbsp;@raises(EMyException&nbsp;Raises&nbsp;this&nbsp;exception)
&nbsp;<br />}
&nbsp;<br />constructor&nbsp;Init;
</div>
</td></tr></table>
<!--l. 467--><p class="nopar">
<!--l. 469--><p class="noindent">
   <h4 class="subsectionHead"><span class="titlemark">4.17   </span> <a 
 id="x1-220004.17"></a>return, returns</h4>
<!--l. 471--><p class="noindent">Treat the text in the argument as the description of the returns value of this
function or method.
<!--l. 474--><p class="noindent">
   <h4 class="subsectionHead"><span class="titlemark">4.18   </span> <a 
 id="x1-230004.18"></a>true</h4>
<!--l. 476--><p class="noindent">PasDoc inserts the specially formatted text &#8217;true&#8217; here at the location of the tag.
This tag does not have any parameters.
<!--l. 480--><p class="noindent">
   <h3 class="sectionHead"><span class="titlemark">5   </span> <a 
 id="x1-240005"></a>Switches</h3>
<!--l. 482--><p class="noindent">This is a list of all switches (program parameters) supported by <span 
class="cmtt-10x-x-109">pasdoc</span>.
Enter <span 
class="cmtt-10x-x-109">pasdoc --help </span>at the command line to get this list. Make sure you
keep the exact spelling of the switches, pasdoc is case-sensitive. Most
switches exist in two variations, a short one with a single dash and a
longer one with two dashes. You can use either switch to get the same
effect.
<!--l. 489--><p class="noindent">
   <h4 class="subsectionHead"><span class="titlemark">5.1   </span> <a 
 id="x1-250005.1"></a>Documentation file format</h4>
<!--l. 491--><p class="noindent">After loading all Pascal source code files, pasdoc will write one or more
output files, depending on the output file format. Choose the output

format according to your needs - you might want to create several versions
for
<!--l. 496--><p class="noindent">
   <h5 class="subsubsectionHead"><span class="titlemark">5.1.1   </span> <a 
 id="x1-260005.1.1"></a>HTML</h5>
<!--l. 498--><p class="noindent"><span 
class="cmtt-10x-x-109">-O html</span>
<br class="newline"><span 
class="cmtt-10x-x-109">--format html</span>
<br class="newline">
<!--l. 501--><p class="indent">   This switch makes pasdoc write HTML (Hypertext Markup Language)
output. HTML files are usually displayed in a web browser, which available on all
modern computer systems.
<!--l. 505--><p class="indent">   It is the default output file format. Several files will be created for this output
type, one for each unit, class, interface and object, additionally some overview
files with lists of all constants, types etc.
<!--l. 509--><p class="indent">   This is the preferred output for online viewing.
<!--l. 511--><p class="indent">   It is to note that even undocumented items will appear in the final output file
format.
<!--l. 514--><p class="noindent">
   <h5 class="subsubsectionHead"><span class="titlemark">5.1.2   </span> <a 
 id="x1-270005.1.2"></a>htmlhelp</h5>
<!--l. 516--><p class="noindent"><span 
class="cmtt-10x-x-109">-O htmlhelp</span>
<br class="newline"><span 
class="cmtt-10x-x-109">--format htmlhelp</span>
<br class="newline">
<!--l. 519--><p class="indent">   This switch makes pasdoc write HTML (Hypertext Markup Language)
output. It also writes additional files that can be used to create Microsoft
htmlhelp files. Please consult the htmlhelp Microsoft SDK for more information.
<!--l. 524--><p class="noindent">
   <h5 class="subsubsectionHead"><span class="titlemark">5.1.3   </span> <a 
 id="x1-280005.1.3"></a><span class="LATEX">L<span class="A">A</span><span class="TEX">T<span 
class="E">E</span>X</span></span></h5>
<!--l. 526--><p class="noindent"><span 
class="cmtt-10x-x-109">-O latex</span>
<br class="newline"><span 
class="cmtt-10x-x-109">--format latex</span>
<br class="newline">
<!--l. 529--><p class="indent">   This switch makes pasdoc write output that can be interpreted using
<span class="LATEX">L<span class="A">A</span><span class="TEX">T<span 
class="E">E</span>X</span></span>. This is the preferred output format for printing the documentation.
<!--l. 533--><p class="indent">   A single output file, either having the name specified with the <span 
class="cmtt-10x-x-109">-N </span>switch, or
the default name <span 
class="cmtt-10x-x-109">docs.tex </span>will be created.

<!--l. 537--><p class="indent">   With <span 
class="cmtt-10x-x-109">latex </span>you will be able to create a dvi file that can then be converted to
a Postscript file using <span 
class="cmtt-10x-x-109">dvips</span>. Or you can also directly generate a huge HTML file
by using <span 
class="cmtt-10x-x-109">htlatex</span>, or a PDF file by using <span 
class="cmtt-10x-x-109">pdflatex</span>.
<!--l. 543--><p class="indent">   It is to note that the output generated by pasdoc has been optimized for
<span 
class="cmtt-10x-x-109">pdflatex </span>and <span 
class="cmtt-10x-x-109">htlatex</span>.
<!--l. 546--><p class="indent">   It is to note that only documented items will appear in the final output file
format.
<!--l. 550--><p class="noindent">
   <h5 class="subsubsectionHead"><span class="titlemark">5.1.4   </span> <a 
 id="x1-290005.1.4"></a>LaTeX2rtf</h5>
<!--l. 552--><p class="noindent"><span 
class="cmtt-10x-x-109">-O latex2rtf</span>
<br class="newline"><span 
class="cmtt-10x-x-109">--format latex2rtf</span>
<br class="newline">
<!--l. 555--><p class="indent">   This switch makes pasdoc write output that can be interpreted using
<span 
class="cmtt-10x-x-109">latex2rtf</span>. This is the preferred output format for adding the documentation to
word processor documentation.
<!--l. 559--><p class="indent">   A single output file, either having the name specified with the <span 
class="cmtt-10x-x-109">-N </span>switch, or
the default name <span 
class="cmtt-10x-x-109">docs.tex </span>will be created. This file can then be converted to rtf
by using <span 
class="cmtt-10x-x-109">latex2rtf</span>.
<!--l. 564--><p class="indent">   This output will only work with the <span 
class="cmtt-10x-x-109">latex2rtf </span>tool. Using other tools might
not produce the expected results.
<!--l. 567--><p class="indent">   It is to note that only documented items will appear in the final output file
format.
<!--l. 571--><p class="noindent">
   <h4 class="subsectionHead"><span class="titlemark">5.2   </span> <a 
 id="x1-300005.2"></a>Format-specific switches</h4>
<!--l. 573--><p class="noindent">The following switches can only be used with one output file format and are
useless for the others.
<!--l. 576--><p class="noindent">
   <h5 class="subsubsectionHead"><span class="titlemark">5.2.1   </span> <a 
 id="x1-310005.2.1"></a>No generator information</h5>
<!--l. 578--><p class="noindent"><span 
class="cmtt-10x-x-109">-X</span>
<br class="newline"><span 
class="cmtt-10x-x-109">--exclude-generator</span>
<br class="newline">
<!--l. 581--><p class="indent">   By default, pasdoc includes some information on itself and the document
creation time at the bottom of each generated HTML file. This switch keeps

pasdoc from adding that information.
<!--l. 585--><p class="noindent">
   <h5 class="subsubsectionHead"><span class="titlemark">5.2.2   </span> <a 
 id="x1-320005.2.2"></a>Specify name of document</h5>
<!--l. 586--><p class="noindent"><span 
class="cmtt-10x-x-109">-N NAME --name NAME</span>
<!--l. 589--><p class="indent">   When the output format of the documentation is not HTML (such as latex,
or CHM), this specifies the name of the final name of the documentation. If this
is not specified, it uses the default<span 
class="cmtt-10x-x-109">docs </span>filename.
<!--l. 597--><p class="noindent">
   <h5 class="subsubsectionHead"><span class="titlemark">5.2.3   </span> <a 
 id="x1-330005.2.3"></a>Specify footers and headers to use</h5>
<!--l. 599--><p class="noindent"><span 
class="cmtt-10x-x-109">-F FILNAME --footer FILENAME -H FILNAME --header FILENAME</span>
<!--l. 604--><p class="indent">   You can specify texts files which PasDoc should use as header or footer for all
generated html pages. This option is only available for the html output
format.
<!--l. 608--><p class="indent">   Example:

   <table width="100%" 
class="verbatim"><tr class="verbatim"><td 
class="verbatim"><div class="verbatim">
pasdoc&nbsp;--header&nbsp;myheader.txt&nbsp;--footer&nbsp;myfooter.txt
</div>
</td></tr></table>
<!--l. 611--><p class="nopar">
<!--l. 615--><p class="noindent">
   <h4 class="subsectionHead"><span class="titlemark">5.3   </span> <a 
 id="x1-340005.3"></a>Comment Marker switches</h4>
<!--l. 618--><p class="noindent">It is possible for pasdoc to ignore comments that do not start with the correct
start markers. By default, all comments are treated as item descriptions. This
can be changed using the following switches:
<!--l. 623--><p class="indent">
     <dl class="description"><dt class="description">
<span 
class="cmtt-10x-x-109">--staronly</span> </dt><dd 
class="description">Parse only <span 
class="cmsy-10x-x-109">{</span>**, (*** and //** style comments
     </dd><dt class="description">
<span 
class="cmtt-10x-x-109">--marker</span> </dt><dd 
class="description">Parse only <span 
class="cmsy-10x-x-109">{</span><span 
class="cmmi-10x-x-109">&lt;</span>marker<span 
class="cmmi-10x-x-109">&gt;</span>, (*marker and //marker comments.
     Overrides the staronly option, which is a shortcut for &#8217;-marker=**&#8217;
     </dd><dt class="description">
<span 
class="cmtt-10x-x-109">--marker-optional</span> </dt><dd 
class="description">Do  not  require  the  markers  given  in  -marker  but
     remove them from the comment if they exist.</dd></dl>
<!--l. 632--><p class="noindent">
   <h4 class="subsectionHead"><span class="titlemark">5.4   </span> <a 
 id="x1-350005.4"></a>Output language switches</h4>
<!--l. 634--><p class="noindent"><span 
class="cmtt-10x-x-109">-L lg</span>
<br class="newline"><span 
class="cmtt-10x-x-109">--language lg</span>
<br class="newline">
<!--l. 638--><p class="indent">   You can specify the language that will be used for words in the output like
<span 
class="cmti-10x-x-109">Methods </span>or <span 
class="cmti-10x-x-109">Classes, interfaces and objects</span>. Your choice will not influence the
status messages printed by pasdoc to standard output - they will always be in
English. Note that you can choose at most one language switch - if you specify
none, the default language <span 
class="cmti-10x-x-109">English </span>will be used.
<!--l. 645--><p class="indent">   The <span 
class="cmtt-10x-x-109">lg </span>parameter can take one of the following values:

     <dl class="description"><dt class="description">
<span 
class="cmbx-10x-x-109">ba</span> </dt><dd 
class="description">Bosnian (Codepage 1250)
     </dd><dt class="description">
<span 
class="cmbx-10x-x-109">br</span> </dt><dd 
class="description">Portugese / Brazilian
     </dd><dt class="description">
<span 
class="cmbx-10x-x-109">ct</span> </dt><dd 
class="description">Catalan
     </dd><dt class="description">
<span 
class="cmbx-10x-x-109">dk</span> </dt><dd 
class="description">Danish
     </dd><dt class="description">
<span 
class="cmbx-10x-x-109">en</span> </dt><dd 
class="description">English
     </dd><dt class="description">
<span 
class="cmbx-10x-x-109">fr</span> </dt><dd 
class="description">French
     </dd><dt class="description">
<span 
class="cmbx-10x-x-109">de</span> </dt><dd 
class="description">German
     </dd><dt class="description">
<span 
class="cmbx-10x-x-109">id</span> </dt><dd 
class="description">Indonesian
     </dd><dt class="description">
<span 
class="cmbx-10x-x-109">it</span> </dt><dd 
class="description">Italian
     </dd><dt class="description">
<span 
class="cmbx-10x-x-109">jv</span> </dt><dd 
class="description">Javanese
     </dd><dt class="description">
<span 
class="cmbx-10x-x-109">pl</span> </dt><dd 
class="description">Polish
     </dd><dt class="description">
<span 
class="cmbx-10x-x-109">ru.1251</span> </dt><dd 
class="description">Russian (Codepage 1251)
     </dd><dt class="description">
<span 
class="cmbx-10x-x-109">ru.866</span> </dt><dd 
class="description">Russian (Codepage 866)
     </dd><dt class="description">
<span 
class="cmbx-10x-x-109">ru.KOI8</span> </dt><dd 
class="description">Russian (KOI-8
     </dd><dt class="description">
<span 
class="cmbx-10x-x-109">sk</span> </dt><dd 
class="description">Slovak

     </dd><dt class="description">
<span 
class="cmbx-10x-x-109">es</span> </dt><dd 
class="description">Spanish
     </dd><dt class="description">
<span 
class="cmbx-10x-x-109">se</span> </dt><dd 
class="description">Swedish</dd></dl>
<!--l. 666--><p class="noindent">
   <h4 class="subsectionHead"><span class="titlemark">5.5   </span> <a 
 id="x1-360005.5"></a>Other switches</h4>
<!--l. 670--><p class="noindent">
   <h5 class="subsubsectionHead"><span class="titlemark">5.5.1   </span> <a 
 id="x1-370005.5.1"></a>Include / Exclude class Members by visiblity</h5>
<!--l. 672--><p class="noindent"><span 
class="cmtt-10x-x-109">-M</span>
<br class="newline"><span 
class="cmtt-10x-x-109">--visible-members</span>
<br class="newline">
<!--l. 675--><p class="indent">   By default all non-private fields, methods properties are included in the
documentation. This switch permits to change which items of the specified
visibility will be documented.
<!--l. 679--><p class="indent">   The possible arguments, separated by a comma are:
     <dl class="description"><dt class="description">
<span 
class="cmtt-10x-x-109">private</span> </dt><dd 
class="description">
     </dd><dt class="description">
<span 
class="cmtt-10x-x-109">protected</span> </dt><dd 
class="description">
     </dd><dt class="description">
<span 
class="cmtt-10x-x-109">public</span> </dt><dd 
class="description">
     </dd><dt class="description">
<span 
class="cmtt-10x-x-109">published</span> </dt><dd 
class="description">
     </dd><dt class="description">
<span 
class="cmtt-10x-x-109">automated</span> </dt><dd 
class="description"></dd></dl>
<!--l. 688--><p class="indent">   In the following example only the private and protected members will be
documented, all others will be ignored.

   <table width="100%" 
class="verbatim"><tr class="verbatim"><td 
class="verbatim"><div class="verbatim">
pasdoc&nbsp;--visible-members&nbsp;private,protected
</div>
</td></tr></table>
<!--l. 693--><p class="nopar">
<!--l. 695--><p class="noindent">
   <h5 class="subsubsectionHead"><span class="titlemark">5.5.2   </span> <a 
 id="x1-380005.5.2"></a>Output directory</h5>
<!--l. 697--><p class="noindent"><span 
class="cmtt-10x-x-109">-E DIRECTORY</span>
<br class="newline"><span 
class="cmtt-10x-x-109">--output DIRECTORY</span>
<br class="newline">
<!--l. 700--><p class="indent">   By default, pasdoc writes the output file(s) to the current directory. This
switch defines a new output directory - this makes sense especially when you
have many units and classes, they should get a subdirectory of their own, e.g.
<span 
class="cmtt-10x-x-109">htmloutput</span>.
<!--l. 705--><p class="noindent">
   <h5 class="subsubsectionHead"><span class="titlemark">5.5.3   </span> <a 
 id="x1-390005.5.3"></a>Read file names from file</h5>
<!--l. 707--><p class="noindent"><span 
class="cmtt-10x-x-109">-S FILE</span>
<br class="newline"><span 
class="cmtt-10x-x-109">--source FILE</span>
<br class="newline">
<!--l. 710--><p class="indent">   If you want pasdoc to write documentation for a large project involving many
unit source code files, you can use this switch to load the file names from a text
file. Pasdoc expects this file to have one file name in each row, no additional
cleaning is done, so be careful not to include spaces or other whitespace like
tabs.
<!--l. 717--><p class="noindent">
   <h5 class="subsubsectionHead"><span class="titlemark">5.5.4   </span> <a 
 id="x1-400005.5.4"></a>Change verbosity level</h5>
<!--l. 719--><p class="noindent"><span 
class="cmtt-10x-x-109">-v LEVEL</span>
<br class="newline"><span 
class="cmtt-10x-x-109">--verbosity LEVEL</span>
<br class="newline">
<!--l. 722--><p class="indent">   Using this switch in combination with an integer number <span 
class="cmsy-10x-x-109"><u 
class="underline">&gt;</u> </span>0 lets you define
the amount of information pasdoc writes to standard output. The default

level is 2, this switch is optional. A level of 0 will result in no output at
all.
<!--l. 727--><p class="noindent">
   <h5 class="subsubsectionHead"><span class="titlemark">5.5.5   </span> <a 
 id="x1-410005.5.5"></a>Show help</h5>
<!--l. 729--><p class="noindent"><span 
class="cmtt-10x-x-109">-?</span>
<br class="newline"><span 
class="cmtt-10x-x-109">--help</span>
<br class="newline">
<!--l. 732--><p class="indent">   This switch makes pasdoc print usage hints and supported switches to
standard output (usually the console) and terminates.
<!--l. 735--><p class="noindent">
   <h5 class="subsubsectionHead"><span class="titlemark">5.5.6   </span> <a 
 id="x1-420005.5.6"></a>Specify a directive</h5>
<!--l. 738--><p class="noindent"><span 
class="cmtt-10x-x-109">-D DIRECTIVE</span>
<br class="newline"><span 
class="cmtt-10x-x-109">--define DIRECTIVE</span>
<br class="newline">
<!--l. 741--><p class="indent">   Adds <span 
class="cmtt-10x-x-109">DIRECTIVE </span>to the list of conditional directives that are present
whenever parsing a unit is started.
<!--l. 744--><p class="indent">   The list of directives will be adjusted whenever a directive like <span 
class="cmtt-10x-x-109">WIN32 </span>or <span 
class="cmtt-10x-x-109">FPC</span>
is defined or undefined in the source code. Each define should be separated by the
others by a comma, as shown in the following example:

   <table width="100%" 
class="verbatim"><tr class="verbatim"><td 
class="verbatim"><div class="verbatim">
pasdoc&nbsp;--define&nbsp;debug,hello,world
</div>
</td></tr></table>
<!--l. 750--><p class="nopar">
<!--l. 752--><p class="noindent">
   <h5 class="subsubsectionHead"><span class="titlemark">5.5.7   </span> <a 
 id="x1-430005.5.7"></a>Specify an include file path</h5>
<!--l. 755--><p class="noindent"><span 
class="cmtt-10x-x-109">-I DIR</span>
<br class="newline"><span 
class="cmtt-10x-x-109">--include DIR</span>
<br class="newline">
<!--l. 758--><p class="indent">   Adds <span 
class="cmtt-10x-x-109">DIR </span>to the list of directories where pasdoc will search for include files.
Whenever an include file directive is encountered in the source code, pasdoc
first tries to open that include file by the name found in that directive.
This will work in all cases where the current directory contains that
include file or when the file name contains a valid absolute or relative
path.
<!--l. 765--><p class="indent">   It is possible to use this switch more than once on the command
line.

   <table width="100%" 
class="verbatim"><tr class="verbatim"><td 
class="verbatim"><div class="verbatim">
pasdoc&nbsp;--include&nbsp;c:\mysources\include&nbsp;--include&nbsp;c:\3rdparty\somelib\include
</div>
</td></tr></table>
<!--l. 769--><p class="nopar">
<!--l. 771--><p class="noindent">
   <h5 class="subsubsectionHead"><span class="titlemark">5.5.8   </span> <a 
 id="x1-440005.5.8"></a>Specify directive file</h5>
<!--l. 774--><p class="noindent"><span 
class="cmtt-10x-x-109">-d DIRECTORY</span>
<br class="newline"><span 
class="cmtt-10x-x-109">--conditionals DIRECTORY</span>
<br class="newline">
<!--l. 777--><p class="indent">   Adds the defines specified in a file <span 
class="cmtt-10x-x-109">DIRECTORY </span>to the list of conditional
directives that are present whenever parsing a unit is started.
<!--l. 780--><p class="indent">   The list of directives will be adjusted whenever a directive like <span 
class="cmtt-10x-x-109">WIN32 </span>or <span 
class="cmtt-10x-x-109">FPC</span>
is defined or undefined in the source code. There should be one defibe per line in
the conditional file.

   <table width="100%" 
class="verbatim"><tr class="verbatim"><td 
class="verbatim"><div class="verbatim">
pasdoc&nbsp;--conditionals&nbsp;/home/me/pascal/myconditionals
</div>
</td></tr></table>
<!--l. 786--><p class="nopar">
<!--l. 788--><p class="noindent">
   <h5 class="subsubsectionHead"><span class="titlemark">5.5.9   </span> <a 
 id="x1-450005.5.9"></a>Set title of document</h5>
<!--l. 790--><p class="noindent"><span 
class="cmtt-10x-x-109">-T &#34;STRING&#34;</span>
<br class="newline"><span 
class="cmtt-10x-x-109">--title &#34;STRING&#34;</span>
<br class="newline">
<!--l. 793--><p class="indent">   This option sets the title of the output document. The characters in the title
should be enclosed in double quotes.
<!--l. 796--><p class="indent">   By default, depending on the documentation format, the document contains
either no title, or the name of the unit being documented.
<!--l. 799--><p class="indent">   Example:

   <table width="100%" 
class="verbatim"><tr class="verbatim"><td 
class="verbatim"><div class="verbatim">
pasdoc&nbsp;-T&nbsp;&#34;This&nbsp;is&nbsp;my&nbsp;document&nbsp;title&#34;
</div>
</td></tr></table>
<!--l. 802--><p class="nopar">
<!--l. 804--><p class="noindent">
   <h5 class="subsubsectionHead"><span class="titlemark">5.5.10   </span> <a 
 id="x1-460005.5.10"></a>Include uses list</h5>
<!--l. 806--><p class="noindent"><span 
class="cmtt-10x-x-109">--write-uses-list</span>
<br class="newline">
<!--l. 808--><p class="indent">   PasDoc can optionally include the list of units in a unit&#8217;s uses clause to that
unit&#8217;s description.
<!--l. 811--><p class="indent">   Example:

   <table width="100%" 
class="verbatim"><tr class="verbatim"><td 
class="verbatim"><div class="verbatim">
pasdoc&nbsp;--write-uses-list
</div>
</td></tr></table>
<!--l. 814--><p class="nopar">
<!--l. 816--><p class="indent">   If a unit in the uses list is part of the documentation, it will be clickable in
the output.
<!--l. 819--><p class="indent">   By default this option is disabled.
<!--l. 821--><p class="noindent">
   <h5 class="subsubsectionHead"><span class="titlemark">5.5.11   </span> <a 
 id="x1-470005.5.11"></a>Full link output</h5>
<!--l. 823--><p class="noindent"><span 
class="cmtt-10x-x-109">--full-link</span>
<br class="newline">
<!--l. 825--><p class="indent">   This option controls the behaviour of &#8221;@link(unit.procedure)&#8221; type links. If it
is set, the output generated will look like this:
<!--l. 828--><p class="indent">   <span 
class="cmtt-10x-x-109">unit.procedure </span>with the &#8221;unit&#8221; part linking to the unit and the &#8221;procedure&#8221;
part linking to the procedure inside the unit. If it is unset, then the output will
only be <span 
class="cmtt-10x-x-109">procedure</span>.
<!--l. 832--><p class="noindent">
   <h5 class="subsubsectionHead"><span class="titlemark">5.5.12   </span> <a 
 id="x1-480005.5.12"></a>Non documented switches</h5>
<!--l. 834--><p class="noindent">This lists the other unusual switches that are recognized by pasdoc:
<!--l. 837--><p class="indent">
     <dl class="description"><dt class="description">
<span 
class="cmtt-10x-x-109">-R, --description</span> </dt><dd 
class="description">read description from this file
     </dd><dt class="description">
<span 
class="cmtt-10x-x-109">-C, --content</span> </dt><dd 
class="description">Read Contents for HtmlHelp from file
     </dd><dt class="description">
<span 
class="cmtt-10x-x-109">--numericfilenames</span> </dt><dd 
class="description">Causes   the   html   generator   to   create   numeric
     filenames
     </dd><dt class="description">
<span 
class="cmtt-10x-x-109">--graphviz-uses</span> </dt><dd 
class="description">write a GVUses.gviz file that can be used for the <span 
class="cmtt-10x-x-109">dot</span>
     program from GraphViz to generate a unit dependency graph.

     </dd><dt class="description">
<span 
class="cmtt-10x-x-109">--graphviz-classes</span> </dt><dd 
class="description">write a GVClasses.gviz file that can be used for the
     <span 
class="cmtt-10x-x-109">dot </span>program from GraphViz to generate a class hierarchy graph.
     </dd><dt class="description">
<span 
class="cmtt-10x-x-109">--abbreviations</span> </dt><dd 
class="description">abbreviation  file,  format  is  &#8221;[name]  value&#8221;,  value  is
     trimmed, lines that do not start with &#8217;[&#8217; (or whitespace before that)
     are ignored
     </dd><dt class="description">
<span 
class="cmtt-10x-x-109">--aspell</span> </dt><dd 
class="description">enable aspell, giving language as parameter, currently only done
     in HTML output
     </dd><dt class="description">
<span 
class="cmtt-10x-x-109">--ignore-words</span> </dt><dd 
class="description">When spell-checking, ignore the words in that file. The file
     should contain one word on every line, no comments allowed
     </dd><dt class="description">
<span 
class="cmtt-10x-x-109">--cache-dir</span> </dt><dd 
class="description">Cache directory for parsed files (default not set)</dd></dl>
<!--l. 853--><p class="noindent">
   <h3 class="sectionHead"><span class="titlemark">6   </span> <a 
 id="x1-490006"></a>Known problems</h3>
<!--l. 855--><p class="noindent">
   <h4 class="subsectionHead"><span class="titlemark">6.1   </span> <a 
 id="x1-500006.1"></a>Documentation of program files</h4>
<!--l. 857--><p class="noindent">As was said before, only units are regarded by pasdoc. In an OOP environment
for which pasdoc was written, an application is usually a class overriding an
abstract application class, so all code that is ever needed in the program file looks
like this:

   <table width="100%" 
class="verbatim"><tr class="verbatim"><td 
class="verbatim"><div class="verbatim">
program&nbsp;main;
&nbsp;<br />
&nbsp;<br />uses&nbsp;myapp;
&nbsp;<br />
&nbsp;<br />var&nbsp;App:&nbsp;TMyApplication;
&nbsp;<br />
&nbsp;<br />begin
&nbsp;<br />&nbsp;&nbsp;App&nbsp;:=&nbsp;TMyApplication.Create;
&nbsp;<br />&nbsp;&nbsp;App.Run;
&nbsp;<br />&nbsp;&nbsp;App.Destroy;
&nbsp;<br />end.
</div>
</td></tr></table>
<!--l. 874--><p class="nopar">
<!--l. 876--><p class="indent">   So there isn&#8217;t much to do for documentation. If you&#8217;re not using OOP, you
could at least try to move as much code as possible out of the main program to
make things work with pasdoc.
<!--l. 880--><p class="noindent">
   <h4 class="subsectionHead"><span class="titlemark">6.2   </span> <a 
 id="x1-510006.2"></a>Records</h4>
<!--l. 882--><p class="noindent">Pasdoc cannot create separate documentation for members of a record. In
object-oriented programs, records will not appear most of the time because all
encapsulated data will be part of a class or object. However, you can give a single
explanation on a record type which could contain a description of all
members.
<!--l. 888--><p class="noindent">
   <h4 class="subsectionHead"><span class="titlemark">6.3   </span> <a 
 id="x1-520006.3"></a>Non-unique identifiers</h4>
<!--l. 890--><p class="noindent">In some larger projects, identifiers may be used in different contexts, e.g. as the
name for a parameter and as a function name. Pasdoc will not be able to tell
these contexts apart and as a result, will create in the above-mentioned example
links (at least in HTML) from the argument name of a function to the type of
the same name.

<!--l. 896--><p class="noindent">
   <h3 class="sectionHead"><span class="titlemark">7   </span> <a 
 id="x1-530007"></a>Adding support for another output format</h3>
<!--l. 898--><p class="noindent">If you want to write a different type of document than those supported, you can
create another unit with a new object type that overrides <span 
class="cmtt-10x-x-109">TDocGenerator </span>from
unit <span 
class="cmtt-10x-x-109">PasDoc</span><span 
class="cmtt-10x-x-109">_Gen.pas</span>. You&#8217;ll have to override several of its methods to
implement a new output format. As examples, you can always look at how the
HTML and <span class="LATEX">L<span class="A">A</span><span class="TEX">T<span 
class="E">E</span>X</span></span>generators work. First of all, you must decide whether your
new output format will store the documentation in one (like <span class="LATEX">L<span class="A">A</span><span class="TEX">T<span 
class="E">E</span>X</span></span>) or multiple
files (like HTML).
<!--l. 910--><p class="noindent">
   <h3 class="sectionHead"><span class="titlemark">8   </span> <a 
 id="x1-540008"></a>Credits</h3>
<!--l. 912--><p class="noindent">Thanks to Michael van Canneyt, Marco van de Voort, Dan Damian, Philippe
Jean Dit Bailleul, Jeff Wormsley, Johann Glaser, Gudrun Plato, Erwin
Scheuch-Hellig, Iv&aacute;n Montes Velencoso, Mike Ravkin, Jean-Pierre Vial, Jon
Korty, Martin Krumpolec, Andr&eacute; Jager, Samuel Liddicott, Michael Hess, Ivan
Tarapcik, Marc Weustink, Pascal Berger, Rolf Offermanns and Rodrigo Urubatan
Ferreira Jardim for contributing ideas, bug reports and fixes, help and
code!
    
</body></html>