blob: b1a34d401c89a23a2dcc701a06063bc5f0ba67fe [file] [log] [blame]
Fred Drakebc2285e1999-07-29 22:03:11 +00001<?xml version="1.0" encoding="iso-8859-1"?>
2<conversion>
3 <!-- Miscellaneous. -->
4 <macro name="declaremodule">
5 <attribute name="id" optional="yes"/>
6 <attribute name="type"/>
7 <attribute name="name"/>
8 </macro>
9 <macro name="modulesynopsis">
10 <content/>
11 </macro>
12 <macro name="platform">
13 <content/>
14 </macro>
15 <macro name="deprecated">
16 <attribute name="version"/>
17 <content/>
18 </macro>
19 <macro name="label">
20 <attribute name="id"/>
21 </macro>
22 <macro name="nodename" outputname="label">
23 <attribute name="id"/>
24 </macro>
25 <macro name="localmoduletable"/>
26 <macro name="manpage">
27 <attribute name="name"/>
28 <attribute name="section"/>
29 </macro>
30 <macro name="module">
31 <content/>
32 </macro>
33 <macro name="moduleauthor">
34 <attribute name="name"/>
35 <attribute name="email"/>
36 </macro>
Fred Drake91f31ea1999-11-09 19:33:24 +000037 <macro name="citetitle">
38 <attribute name="href" optional="yes"/>
39 <content/>
40 </macro>
Fred Drakebc2285e1999-07-29 22:03:11 +000041 <macro name="rfc">
42 <attribute name="num"/>
43 </macro>
Fred Drakece194962001-03-23 16:29:06 +000044 <macro name="sectionauthor" outputname="author">
Fred Drakebc2285e1999-07-29 22:03:11 +000045 <attribute name="name"/>
46 <attribute name="email"/>
47 </macro>
Fred Drakece194962001-03-23 16:29:06 +000048 <macro name="author">
49 <attribute name="name"/>
50 </macro>
51 <macro name="authoraddress">
52 <content/>
53 </macro>
Fred Draked397f232000-11-22 16:45:19 +000054 <macro name="shortversion"/>
Fred Drakebc2285e1999-07-29 22:03:11 +000055 <macro name="versionadded">
56 <attribute name="version"/>
57 </macro>
Fred Draked397f232000-11-22 16:45:19 +000058 <!-- This is broken: we need to re-order the optional and required
59 parameters, making the optional parameter the content for the
60 element. The processor is not powerful enough to handle this.
61 -->
Fred Drakebc2285e1999-07-29 22:03:11 +000062 <macro name="versionchanged">
63 <attribute name="version"/>
64 </macro>
65
66 <!-- Module referencing. -->
67 <macro name="refmodule" outputname="module">
68 <attribute name="" optional="yes"/>
69 <attribute name="link">yes</attribute>
70 <content/>
71 </macro>
72
73 <!-- Information units. -->
74 <!-- C things. -->
75 <environment name="cfuncdesc">
76 <attribute name="type"/>
77 <attribute name="name"/>
78 <child name="args"/>
79 </environment>
80 <environment name="ctypedesc">
Fred Draked397f232000-11-22 16:45:19 +000081 <attribute name="tag" optional="yes"/>
Fred Drakebc2285e1999-07-29 22:03:11 +000082 <attribute name="name"/>
83 </environment>
84 <environment name="cvardesc">
85 <attribute name="type"/>
86 <attribute name="name"/>
87 </environment>
88
89 <!-- Python things. -->
90 <macro name="optional">
91 <content/>
92 </macro>
Fred Drake2ed27d32000-11-17 19:05:12 +000093 <macro name="unspecified"/>
94 <macro name="moreargs"/>
Fred Drakebc2285e1999-07-29 22:03:11 +000095 <environment name="classdesc">
96 <attribute name="name"/>
97 <child name="args"/>
98 </environment>
99 <environment name="datadesc">
100 <attribute name="name"/>
101 </environment>
Fred Drakece194962001-03-23 16:29:06 +0000102 <macro name="dataline">
103 <attribute name="name"/>
104 </macro>
Fred Drakebc2285e1999-07-29 22:03:11 +0000105 <environment name="excdesc">
106 <attribute name="name"/>
107 </environment>
108
109 <environment name="funcdesc">
110 <attribute name="name"/>
111 <child name="args"/>
112 </environment>
113 <macro name="funcline">
114 <attribute name="name"/>
115 <child name="args"/>
116 </macro>
117 <environment name="funcdescni" outputname="funcdesc">
118 <attribute name="index">no</attribute>
119 <attribute name="name"/>
120 <child name="args"/>
121 </environment>
122 <macro name="funclineni" outputname="funcline">
123 <attribute name="index">no</attribute>
124 <attribute name="name"/>
125 <child name="args"/>
126 </macro>
127
128 <environment name="memberdesc">
129 <attribute name="class" optional="yes"/>
130 <attribute name="name"/>
131 </environment>
132 <environment name="memberdescni" outputname="memberdesc">
133 <attribute name="index">no</attribute>
134 <attribute name="class" optional="yes"/>
135 <attribute name="name"/>
136 </environment>
137
138 <environment name="methoddesc">
139 <attribute name="class" optional="yes"/>
140 <attribute name="name"/>
141 <child name="args"/>
142 </environment>
143 <macro name="methodline">
144 <attribute name="class" optional="yes"/>
145 <attribute name="name"/>
146 <child name="args"/>
147 </macro>
148 <environment name="methoddescni">
149 <attribute name="index">no</attribute>
150 <attribute name="class" optional="yes"/>
151 <attribute name="name"/>
152 <child name="args"/>
153 </environment>
154 <macro name="methodlineni" outputname="methodline">
155 <attribute name="index">no</attribute>
156 <attribute name="class" optional="yes"/>
157 <attribute name="name"/>
158 <child name="args"/>
159 </macro>
160
161 <environment name="opcodedesc">
162 <attribute name="name"/>
163 <attribute name="var"/>
164 </environment>
165
166 <!-- "See also:" sections. -->
167 <macro name="seemodule">
168 <attribute name="ref" optional="yes"/>
169 <attribute name="name"/>
Fred Draked397f232000-11-22 16:45:19 +0000170 <child name="description"/>
171 </macro>
172 <macro name="seepep">
173 <attribute name="number"/>
174 <child name="title"/>
175 <child name="description"/>
176 </macro>
177 <macro name="seerfc">
178 <attribute name="number"/>
179 <child name="title"/>
180 <child name="description"/>
Fred Drakebc2285e1999-07-29 22:03:11 +0000181 </macro>
182 <macro name="seetext">
Fred Draked397f232000-11-22 16:45:19 +0000183 <child name="description"/>
184 </macro>
185 <macro name="seetitle">
186 <attribute name="href" optional="yes"/>
187 <child name="title"/>
188 <child name="description"/>
189 </macro>
190 <macro name="seeurl">
191 <attribute name="href"/>
192 <child name="description"/>
Fred Drakebc2285e1999-07-29 22:03:11 +0000193 </macro>
194
195 <!-- Index-generating markup. -->
196 <macro name="index" outputname="indexterm">
197 <attribute name="term1"/>
198 </macro>
199 <macro name="indexii" outputname="indexterm">
200 <attribute name="term1"/>
201 <attribute name="term2"/>
202 </macro>
203 <macro name="indexiii" outputname="indexterm">
204 <attribute name="term1"/>
205 <attribute name="term2"/>
206 <attribute name="term3"/>
207 </macro>
208 <macro name="indexiv" outputname="indexterm">
209 <attribute name="term1"/>
210 <attribute name="term2"/>
211 <attribute name="term3"/>
212 <attribute name="term4"/>
213 </macro>
214
215 <macro name="ttindex" outputname="indexterm">
216 <attribute name="style">tt</attribute>
217 <attribute name="term1"/>
218 </macro>
219
220 <macro name="refmodindex">
221 <attribute name="module"/>
222 </macro>
223 <macro name="stmodindex">
224 <attribute name="module"/>
225 </macro>
226 <macro name="refbimodindex" outputname="refmodindex">
227 <attribute name="module"/>
228 </macro>
229 <macro name="refexmodindex" outputname="refmodindex">
230 <attribute name="module"/>
231 </macro>
232 <macro name="refstmodindex" outputname="refmodindex">
233 <attribute name="module"/>
234 </macro>
235
236 <macro name="bifuncindex">
237 <attribute name="name"/>
238 </macro>
239 <macro name="exindex">
240 <attribute name="name"/>
241 </macro>
242 <macro name="obindex">
243 <attribute name="name"/>
244 </macro>
245 <macro name="kwindex">
246 <attribute name="name"/>
247 </macro>
248 <macro name="opindex">
249 <attribute name="type"/>
250 </macro>
251 <macro name="stindex">
252 <attribute name="type"/>
253 </macro>
254 <macro name="withsubitem">
255 <attribute name="text"/>
256 <content/>
257 </macro>
258 <macro name="setindexsubitem">
259 <attribute name="text"/>
260 </macro>
261
262 <!-- Entity management. -->
263 <macro name="include">
264 <attribute name="source"/>
265 </macro>
266 <macro name="input">
267 <attribute name="source"/>
268 </macro>
269
270 <!-- Large-scale document structure. -->
271 <macro name="documentclass">
272 <attribute name="classname"/>
273 </macro>
274
Fred Drakece194962001-03-23 16:29:06 +0000275 <macro name="usepackage">
276 <attribute name="options" optional="yes"/>
277 <attribute name="pkg"/>
278 </macro>
279
Fred Drakebc2285e1999-07-29 22:03:11 +0000280 <environment name="document"
281 endcloses="chapter chapter* section section*
282 subsection subsection*
283 subsubsection subsubsection*
284 paragraph paragraph* subparagraph subparagraph*"/>
285
286 <macro name="chapter"
287 closes="chapter chapter* section section* subsection subsection*
288 subsubsection subsubsection*
289 paragraph paragraph* subparagraph subparagraph*">
290 <text>
Fred Drakeecb84f82000-01-20 22:51:14 +0000291</text>
Fred Drakebc2285e1999-07-29 22:03:11 +0000292 <child name="title"/>
293 <content implied="yes"/>
294 </macro>
295 <macro name="chapter*" outputname="chapter"
296 closes="chapter chapter* section section* subsection subsection*
297 subsubsection subsubsection*
298 paragraph paragraph* subparagraph subparagraph*">
299 <attribute name="numbered">no</attribute>
300 <text>
Fred Drakeecb84f82000-01-20 22:51:14 +0000301</text>
Fred Drakebc2285e1999-07-29 22:03:11 +0000302 <child name="title"/>
303 <content implied="yes"/>
304 </macro>
305
306 <macro name="section"
307 closes="section section* subsection subsection*
308 subsubsection subsubsection*
309 paragraph paragraph* subparagraph subparagraph*">
310 <text>
Fred Drakeecb84f82000-01-20 22:51:14 +0000311</text>
Fred Drakebc2285e1999-07-29 22:03:11 +0000312 <child name="title"/>
313 <content implied="yes"/>
314 </macro>
315 <macro name="section*" outputname="section"
316 closes="section section* subsection subsection*
317 subsubsection subsubsection*
318 paragraph paragraph* subparagraph subparagraph*">
319 <attribute name="numbered">no</attribute>
320 <text>
Fred Drakeecb84f82000-01-20 22:51:14 +0000321</text>
Fred Drakebc2285e1999-07-29 22:03:11 +0000322 <child name="title"/>
323 <content implied="yes"/>
324 </macro>
325
326 <macro name="subsection"
327 closes="subsection subsection* subsubsection subsubsection*
328 paragraph paragraph* subparagraph subparagraph*">
329 <text>
Fred Drakeecb84f82000-01-20 22:51:14 +0000330</text>
Fred Drakebc2285e1999-07-29 22:03:11 +0000331 <child name="title"/>
332 <content implied="yes"/>
333 </macro>
334 <macro name="subsection*" outputname="subsection"
335 closes="subsection subsection* subsubsection subsubsection*
336 paragraph paragraph* subparagraph subparagraph*">
337 <attribute name="numbered">no</attribute>
338 <text>
Fred Drakeecb84f82000-01-20 22:51:14 +0000339</text>
Fred Drakebc2285e1999-07-29 22:03:11 +0000340 <child name="title"/>
341 <content implied="yes"/>
342 </macro>
343
344 <macro name="subsubsection"
345 closes="subsubsection subsubsection*
346 paragraph paragraph* subparagraph subparagraph*">
347 <text>
Fred Drakeecb84f82000-01-20 22:51:14 +0000348</text>
Fred Drakebc2285e1999-07-29 22:03:11 +0000349 <child name="title"/>
350 <content implied="yes"/>
351 </macro>
352 <macro name="subsubsection*" outputname="subsubsection"
353 closes="subsubsection subsubsection*
354 paragraph paragraph* subparagraph subparagraph*">
355 <attribute name="numbered">no</attribute>
356 <text>
Fred Drakeecb84f82000-01-20 22:51:14 +0000357</text>
Fred Drakebc2285e1999-07-29 22:03:11 +0000358 <child name="title"/>
359 <content implied="yes"/>
360 </macro>
361
362 <macro name="paragraph"
363 closes="paragraph paragraph* subparagraph subparagraph*">
364 <text>
Fred Drakeecb84f82000-01-20 22:51:14 +0000365</text>
Fred Drakebc2285e1999-07-29 22:03:11 +0000366 <child name="title"/>
367 <content implied="yes"/>
368 </macro>
369 <macro name="paragraph*" outputname="paragraph"
370 closes="paragraph paragraph* subparagraph subparagraph*">
371 <attribute name="numbered">no</attribute>
372 <text>
Fred Drakeecb84f82000-01-20 22:51:14 +0000373</text>
Fred Drakebc2285e1999-07-29 22:03:11 +0000374 <child name="title"/>
375 <content implied="yes"/>
376 </macro>
377
378 <macro name="subparagraph"
379 closes="subparagraph subparagraph*">
380 <text>
Fred Drakeecb84f82000-01-20 22:51:14 +0000381</text>
Fred Drakebc2285e1999-07-29 22:03:11 +0000382 <child name="title"/>
383 <content implied="yes"/>
384 </macro>
385 <macro name="subparagraph*" outputname="subparagraph"
386 closes="subparagraph subparagraph*">
387 <attribute name="numbered">no</attribute>
388 <text>
Fred Drakeecb84f82000-01-20 22:51:14 +0000389</text>
Fred Drakebc2285e1999-07-29 22:03:11 +0000390 <child name="title"/>
391 <content implied="yes"/>
392 </macro>
393 <macro name="title">
394 <content/>
395 </macro>
396
397 <macro name="appendix" outputname="back-matter"
398 closes="chapter chapter* section subsection subsubsection
399 paragraph subparagraph"/>
400
401 <environment name="list"
402 endcloses="item">
403 <attribute name="bullet"/>
404 <attribute name="init"/>
405 </environment>
406 <macro name="item" closes="item">
407 <child name="leader" optional="yes"/>
408 <content implied="yes"/>
409 </macro>
410
411 <macro name="ref">
412 <attribute name="ref"/>
413 </macro>
414
415 <environment name="description" outputname="descriptionlist"
416 endcloses="item"/>
417
418 <environment name="enumerate" outputname="enumeration"
419 endcloses="item"/>
420
421 <environment name="fulllineitems"
422 endcloses="item"/>
423
424 <environment name="itemize"
425 endcloses="item"/>
426
427 <environment name="definitions" outputname="definitionlist"
428 encloses="term"/>
429 <macro name="term" closes="definition">
430 <!-- not really optional, but uses the [] syntax -->
431 <child name="term" optional="yes"/>
432 <child name="definition" implied="yes"/>
433 </macro>
434
435 <environment name="comment" verbatim="yes"/>
436 <environment name="verbatim" verbatim="yes"/>
437 <environment name="verbatim*" verbatim="yes">
438 <!-- not used anywhere, but it's a standard LaTeXism -->
439 <attribute name="spaces">visible</attribute>
440 </environment>
441
442 <!-- Table markup. -->
443 <macro name="hline"/>
Fred Drake2f6ec9c1999-08-03 15:27:37 +0000444 <environment name="tableii" outputname="table">
445 <attribute name="cols">2</attribute>
Fred Drakebc2285e1999-07-29 22:03:11 +0000446 <attribute name="colspec"/>
447 <attribute name="style"/>
448 <child name="entry"/>
449 <text>
450 </text>
451 <child name="entry"/>
452 </environment>
Fred Drake2ed27d32000-11-17 19:05:12 +0000453 <environment name="longtableii" outputname="table">
454 <attribute name="cols">2</attribute>
455 <attribute name="colspec"/>
456 <attribute name="style"/>
457 <child name="entry"/>
458 <text>
459 </text>
460 <child name="entry"/>
461 </environment>
Fred Drake2f6ec9c1999-08-03 15:27:37 +0000462 <macro name="lineii" outputname="row">
Fred Drakebc2285e1999-07-29 22:03:11 +0000463 <child name="entry"/>
464 <text>
465 </text>
466 <child name="entry"/>
467 </macro>
468
Fred Drake2f6ec9c1999-08-03 15:27:37 +0000469 <environment name="tableiii" outputname="table">
470 <attribute name="cols">3</attribute>
Fred Drakebc2285e1999-07-29 22:03:11 +0000471 <attribute name="colspec"/>
472 <attribute name="style"/>
473 <child name="entry"/>
474 <text>
475 </text>
476 <child name="entry"/>
477 <text>
478 </text>
479 <child name="entry"/>
480 </environment>
Fred Drake2ed27d32000-11-17 19:05:12 +0000481 <environment name="longtableiii" outputname="table">
482 <attribute name="cols">3</attribute>
483 <attribute name="colspec"/>
484 <attribute name="style"/>
485 <child name="entry"/>
486 <text>
487 </text>
488 <child name="entry"/>
489 <text>
490 </text>
491 <child name="entry"/>
492 </environment>
Fred Drake2f6ec9c1999-08-03 15:27:37 +0000493 <macro name="lineiii" outputname="row">
Fred Drakebc2285e1999-07-29 22:03:11 +0000494 <child name="entry"/>
495 <text>
496 </text>
497 <child name="entry"/>
498 <text>
499 </text>
500 <child name="entry"/>
501 </macro>
502
Fred Drake2f6ec9c1999-08-03 15:27:37 +0000503 <environment name="tableiv" outputname="table">
504 <attribute name="cols">4</attribute>
Fred Drakebc2285e1999-07-29 22:03:11 +0000505 <attribute name="colspec"/>
506 <attribute name="style"/>
507 <child name="entry"/>
508 <text>
509 </text>
510 <child name="entry"/>
511 <text>
512 </text>
513 <child name="entry"/>
514 <text>
515 </text>
516 <child name="entry"/>
517 </environment>
Fred Drake2ed27d32000-11-17 19:05:12 +0000518 <environment name="longtableiv" outputname="table">
519 <attribute name="cols">4</attribute>
520 <attribute name="colspec"/>
521 <attribute name="style"/>
522 <child name="entry"/>
523 <text>
524 </text>
525 <child name="entry"/>
526 <text>
527 </text>
528 <child name="entry"/>
529 <text>
530 </text>
531 <child name="entry"/>
532 </environment>
Fred Drake2f6ec9c1999-08-03 15:27:37 +0000533 <macro name="lineiv" outputname="row">
Fred Drakebc2285e1999-07-29 22:03:11 +0000534 <child name="entry"/>
535 <text>
536 </text>
537 <child name="entry"/>
538 <text>
539 </text>
540 <child name="entry"/>
541 <text>
542 </text>
543 <child name="entry"/>
544 </macro>
545
546 <!-- These are handled at a later translation stage, at least for now. -->
Fred Drake031e2221999-08-02 14:32:11 +0000547 <macro name="Cpp" outputname="">
548 <text>C++</text>
549 </macro>
Fred Drake3cf4eb41999-08-26 17:56:47 +0000550 <macro name="geq" outputname="">
551 <entityref name="geq"/>
552 </macro>
553 <macro name="LaTeX" outputname="">
554 <text>LaTeX</text>
555 </macro>
Fred Drake031e2221999-08-02 14:32:11 +0000556 <macro name="ldots" outputname="">
557 <text>...</text>
558 </macro>
Fred Drake3cf4eb41999-08-26 17:56:47 +0000559 <macro name="leq" outputname="">
560 <entityref name="leq"/>
561 </macro>
562 <macro name="TeX" outputname="">
563 <text>TeX</text>
564 </macro>
Fred Drakebc2285e1999-07-29 22:03:11 +0000565 <macro name="version"/>
566
Fred Drakece194962001-03-23 16:29:06 +0000567 <!-- Distutils things. -->
568 <macro name="command">
569 <content/>
570 </macro>
571 <macro name="option">
572 <content/>
573 </macro>
574 <macro name="filevar" outputname="var">
575 <content/>
576 </macro>
577 <macro name="XXX" outputname="editorial-comment">
578 <content/>
579 </macro>
580
Fred Drakebc2285e1999-07-29 22:03:11 +0000581 <!-- Misc. -->
582 <macro name="emph">
583 <content/>
584 </macro>
585 <macro name="strong">
586 <content/>
587 </macro>
588 <macro name="textrm">
589 <content/>
590 </macro>
591 <macro name="texttt">
592 <content/>
593 </macro>
594 <macro name="code">
595 <content/>
596 </macro>
597 <macro name="exception">
598 <content/>
599 </macro>
600 <macro name="keyword">
601 <content/>
602 </macro>
603 <macro name="samp">
604 <content/>
605 </macro>
606 <macro name="class">
607 <content/>
608 </macro>
609 <macro name="cdata">
610 <content/>
611 </macro>
612 <macro name="cfunction">
613 <content/>
614 </macro>
615 <macro name="ctype">
616 <content/>
617 </macro>
618 <macro name="pytype">
619 <content/>
620 </macro>
621 <macro name="character">
622 <content/>
623 </macro>
624 <macro name="constant">
625 <content/>
626 </macro>
Fred Drake8a3b4491999-11-23 21:48:41 +0000627 <macro name="envvar" outputname="envar">
Fred Drakebc2285e1999-07-29 22:03:11 +0000628 <content/>
629 </macro>
630 <macro name="file" outputname="filename">
631 <content/>
632 </macro>
Fred Drake8a3b4491999-11-23 21:48:41 +0000633 <macro name="filenq" outputname="filename">
634 <attribute name="quote">no</attribute>
635 <content/>
636 </macro>
Fred Drakebc2285e1999-07-29 22:03:11 +0000637 <macro name="function">
638 <content/>
639 </macro>
640 <macro name="kbd">
641 <content/>
642 </macro>
643 <macro name="makevar">
644 <content/>
645 </macro>
646 <macro name="method">
647 <content/>
648 </macro>
649 <macro name="member">
650 <content/>
651 </macro>
652 <macro name="mimetype">
653 <content/>
654 </macro>
655 <macro name="newsgroup">
656 <content/>
657 </macro>
Fred Drake8a3b4491999-11-23 21:48:41 +0000658 <macro name="program" outputname="command">
Fred Drakebc2285e1999-07-29 22:03:11 +0000659 <content/>
660 </macro>
Fred Drake8a3b4491999-11-23 21:48:41 +0000661 <macro name="programopt" outputname="option">
Fred Drake91f31ea1999-11-09 19:33:24 +0000662 <content/>
663 </macro>
Fred Drakece194962001-03-23 16:29:06 +0000664 <macro name="longprogramopt" outputname="longoption">
665 <content/>
666 </macro>
Fred Drakebc2285e1999-07-29 22:03:11 +0000667 <macro name="regexp">
668 <content/>
669 </macro>
Fred Drake8a3b4491999-11-23 21:48:41 +0000670 <macro name="var">
Fred Drakebc2285e1999-07-29 22:03:11 +0000671 <content/>
672 </macro>
673 <macro name="email">
674 <content/>
675 </macro>
676 <macro name="url">
677 <content/>
678 </macro>
679 <macro name="footnote">
680 <content/>
681 </macro>
682 <macro name="dfn" outputname="definedterm">
683 <content/>
684 </macro>
685
686 <macro name="mbox">
687 <content/>
688 </macro>
689
690 <!-- minimal math stuff to get by -->
Fred Drake8a3b4491999-11-23 21:48:41 +0000691 <macro name="pi"/>
Fred Drakebc2285e1999-07-29 22:03:11 +0000692 <macro name="sqrt">
693 <content/>
694 </macro>
695 <macro name="frac" outputname="fraction">
696 <child name="numerator"/>
697 <child name="denominator"/>
698 </macro>
699 <macro name="sum">
700 <content/>
701 </macro>
702
703 <!-- Conversions to text; perhaps could be different? There's -->
704 <!-- no way for a style sheet to work with these this way. -->
Fred Draked95f4e12000-07-01 06:26:44 +0000705 <macro name="ABC" outputname="">
Fred Drakebc2285e1999-07-29 22:03:11 +0000706 <text>ABC</text>
707 </macro>
708 <macro name="ASCII" outputname="">
709 <text>ASCII</text>
710 </macro>
711 <macro name="C" outputname="">
712 <text>C</text>
713 </macro>
714 <macro name="EOF" outputname="">
715 <text>EOF</text>
716 </macro>
717 <macro name="e" outputname="">
718 <text>\</text>
719 </macro>
Fred Drake031e2221999-08-02 14:32:11 +0000720 <macro name="NULL" outputname="constant">
Fred Drakebc2285e1999-07-29 22:03:11 +0000721 <text>NULL</text>
722 </macro>
723 <macro name="POSIX" outputname="">
724 <text>POSIX</text>
725 </macro>
726 <macro name="UNIX" outputname="">
727 <text>Unix</text>
728 </macro>
Fred Draked397f232000-11-22 16:45:19 +0000729 <macro name="textasciitilde" outputname="">
730 <text>~</text>
731 </macro>
Fred Drakebc2285e1999-07-29 22:03:11 +0000732
733 <!-- These will end up disappearing as well! -->
734 <macro name="catcode" outputname=""/>
735 <macro name="fi" outputname=""/>
736 <macro name="ifhtml" outputname=""/>
737 <macro name="indexname" outputname=""/>
738 <macro name="labelwidth" outputname=""/>
739 <macro name="large" outputname=""/>
740 <macro name="leftmargin" outputname=""/>
741 <macro name="makeindex" outputname=""/>
742 <macro name="makemodindex" outputname=""/>
743 <macro name="maketitle" outputname=""/>
744 <macro name="noindent" outputname=""/>
745 <macro name="protect" outputname=""/>
746 <macro name="renewcommand">
747 <attribute name="macro"/>
748 <attribute name="nargs" optional="yes"/>
749 <content/>
750 </macro>
751 <macro name="tableofcontents" outputname=""/>
752 <macro name="vspace">
753 <attribute name="size"/>
754 </macro>
755</conversion>