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
|
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html> <head>
<title>The Epytext Markup Language</title>
<link rel="stylesheet" href="epydoc.css" type="text/css"/>
</head>
<!-- $Id: epytext.html 1211 2006-04-10 19:38:37Z edloper $ -->
<body>
<div class="body">
<h1>The Epytext Markup Language</h1>
<a name="overview"/>
<h2> 1. Overview </h2>
<p> Epytext is a lightweight markup language for Python docstrings.
The epytext markup language is used by epydoc to parse docstrings and
create structured API documentation. Epytext markup is broken up into
the following categories: </p>
<ul>
<li> <b><i>Block Structure</i></b> divides the docstring into nested
blocks of text, such as paragraphs and lists.
<ul>
<li> <b><i>Basic Blocks</i></b> are the basic unit of block structure. </li>
<li> <b><i>Hierarchical blocks</i></b> represent the nesting structure
of the docstring. </li>
</ul> </li>
<li> <b><i>Inline Markup</i></b> marks regions of text within a basic block
with properties, such as italics and hyperlinks. </li>
</ul>
<!-- =========== BLOCK STRUCTURE ============= -->
<a name="block_structure"/>
<h2> 2. Block Structure </h2>
<p> Block structure is encoded using indentation, blank lines, and a
handful of special character sequences. </p>
<ul>
<li> Indentation is used to encode the nesting structure of
hierarchical blocks. The indentation of a line is defined as the
number of leading spaces on that line; and the indentation of a
block is typically the indentation of its first line. </li>
<li> Blank lines are used to separate blocks. A blank line is a
line that only contains whitespace. </li>
<li> Special character sequences are used to mark the beginnings of
some blocks. For example, "<code>-</code>" is used as a bullet for
unordered list items, and "<code>>>></code>" is used to
mark doctest blocks. </li>
</ul>
<p> The following sections describe how to use each type of block
structure. </p>
<a name="paragraph"/>
<h3> 2.1. Paragraphs </h3>
<p> A paragraph is the simplest type of basic block. It consists of
one or more lines of text. Paragraphs must be left justified (i.e.,
every line must have the same indentation). The following example
illustrates how paragraphs can be used: </p>
<table border="1" cellspacing="0" cellpadding="3" width="95%">
<tr><th width="50%">Docstring Input</th><th width="50%">Rendered Output</th>
<tr valign="top"><td>
<pre>
<code class="keyword">def</code> <code class="function">example</code>():
<code class="string">"""
This is a paragraph. Paragraphs can
span multiple lines, and can contain
I{inline markup}.
This is another paragraph. Paragraphs
are separated by blank lines.
"""</code>
<i>[...]</i>
</pre>
</td><td>
<p> This is a paragraph. Paragraphs can span multiple lines, and
contain <i>inline markup</i>. </p>
<p> This is another paragraph. Paragraphs are separated from each
other by blank lines. </p>
</td></tr>
</table>
<a name="list"/>
<h3> 2.2. Lists </h3>
<p> Epytext supports both ordered and unordered lists. A list
consists of one or more consecutive <i>list items</i> of the same type
(ordered or unordered), with the same indentation. Each list item is
marked by a <i>bullet</i>. The bullet for unordered list items is a
single dash character ("<code>-</code>"). Bullets for ordered list
items consist of a series of numbers followed by periods, such as
"<code>12.</code>" or "<code>1.2.8.</code>". </p>
<p> List items typically consist of a bullet followed by a space and a
single paragraph. The paragraph may be indented more than the list
item's bullet; often, the paragraph is intended two or three
characters, so that its left margin lines up with the right side of
the bullet. The following example illustrates a simple ordered
list. </p>
<table border="1" cellspacing="0" cellpadding="3" width="95%">
<tr><th width="50%">Docstring Input</th><th width="50%">Rendered Output</th>
<tr valign="top"><td>
<pre>
<code class="keyword">def</code> <code class="function">example</code>():
<code class="string">"""
1. This is an ordered list item.
2. This is a another ordered list
item.
3. This is a third list item. Note that
the paragraph may be indented more
than the bullet.
"""</code>
<i>[...]</i>
</pre>
</td><td>
<ol>
<li> This is an ordered list item. </li>
<li> This is another ordered list item. </li>
<li> This is a third list item. Note that the paragraph may be
indented more than the bullet.</li>
</td></tr>
</table>
<p> List items can contain more than one paragraph; and they can also
contain sublists, literal blocks, and doctest blocks. All of the
blocks contained by a list item must all have equal indentation, and
that indentation must be greater than or equal to the indentation of
the list item's bullet. If the first contained block is a paragraph,
it may appear on the same line as the bullet, separated from the
bullet by one or more spaces, as shown in the previous example. All
other block types must follow on separate lines. </p>
<p> Every list must be separated from surrounding blocks by
indentation: </p>
<table border="1" cellspacing="0" cellpadding="3" width="95%">
<tr><th width="50%">Docstring Input</th><th width="50%">Rendered Output</th>
<tr valign="top"><td>
<pre>
<code class="keyword">def</code> <code class="function">example</code>():
<code class="string">"""
This is a paragraph.
1. This is a list item.
2. This a second list
item.
- This is a sublist
"""</code>
<i>[...]</i>
</pre>
</td><td>
This is a paragraph.
<ol>
<li> This is a list item. </li>
<li> This is a second list item.
<ul><li>This is a sublist.</li></ul></li>
</ol>
</td></tr>
</table>
<p> Note that sublists must be separated from the blocks in their
parent list item by indentation. In particular, the following
docstring generates an error, since the sublist is not separated from
the paragraph in its parent list item by indentation: </p>
<table border="1" cellspacing="0" cellpadding="3" width="95%">
<tr><th width="50%">Docstring Input</th><th width="50%">Rendered Output</th>
<tr valign="top"><td>
<pre>
<code class="keyword">def</code> <code class="function">example</code>():
<code class="string">"""
1. This is a list item. Its
paragraph is indented 7 spaces.
- This is a sublist. It is
indented 7 spaces.
"""</code>
<i>[...]</i>
</pre>
</td><td>
<b>L5: Error: Lists must be indented.</b>
</td></tr>
</table>
<p> The following example illustrates how lists can be used: </p>
<table border="1" cellspacing="0" cellpadding="3" width="95%">
<tr><th width="50%">Docstring Input</th><th width="50%">Rendered Output</th>
<tr valign="top"><td>
<pre>
<code class="keyword">def</code> <code class="function">example</code>():
<code class="string">"""
This is a paragraph.
1. This is a list item.
- This is a sublist.
- The sublist contains two
items.
- The second item of the
sublist has its own sublist.
2. This list item contains two
paragraphs and a doctest block.
>>> print 'This is a doctest block'
This is a doctest block
This is the second paragraph.
"""</code>
<i>[...]</i>
</pre>
</td><td>
This is a paragraph.
<ol>
<li> This is a list item. </li>
<ul>
<li> This is a sublist. </li>
<li> The sublist contains two items. </li>
<ul>
<li> The second item of the sublist has its own own sublist. </li>
</ul>
</ul>
<li> This list item contains two paragraphs and a doctest block.
<pre>
<code class="prompt">>>></code> <code class="keyword">print</code> <code class="string">'This is a doctest block'</code>
<code class="output">This is a doctest block</code></pre>
<p> This is the second paragraph. </p> </li>
</ol>
</td></tr>
</table>
<p> Epytext will treat any line that begins with a bullet as a list
item. If you want to include bullet-like text in a paragraph, then
you must either ensure that it is not at the beginning of the line,
or use <a href="#escaping">escaping</a> to prevent epytext from
treating it as markup: </p>
<table border="1" cellspacing="0" cellpadding="3" width="95%">
<tr><th width="50%">Docstring Input</th><th width="50%">Rendered Output</th>
<tr valign="top"><td>
<pre>
<code class="keyword">def</code> <code class="function">example</code>():
<code class="string">"""
This sentence ends with the number
1. Epytext can't tell if the "1."
is a bullet or part of the paragraph,
so it generates an error.
"""</code>
<i>[...]</i>
</pre>
</td><td>
<b> L4: Error: Lists must be indented. </b>
</td></tr>
<tr valign="top"><td>
<pre>
<code class="keyword">def</code> <code class="function">example</code>():
<code class="string">"""
This sentence ends with the number 1.
This sentence ends with the number
E{1}.
"""</code>
<i>[...]</i>
</pre>
</td><td>
This sentence ends with the number 1.
<p> This sentence ends with the number 1.</p>
</td></tr>
</table>
<a name="section"/>
<h3> 2.3. Sections </h3>
<p> A section consists of a heading followed by one or more
child blocks. </p>
<ul>
<li> The heading is a single underlined line of text. Top-level
section headings are underlined with the "=" character; subsection
headings are underlined with the "-" character; and subsubsection
headings are underlined with the "~" character. The length of the
underline must exactly match the length of the heading.</li>
<li> The child blocks can be paragraphs, lists, literal blocks,
doctest blocks, or sections. Each child must have equal
indentation, and that indentation must be greater than or equal to
the heading's indentation. </li>
</ul>
<p> The following example illustrates how sections can be used: </p>
<table border="1" cellspacing="0" cellpadding="3" width="95%">
<tr><th width="50%">Docstring Input</th><th width="50%">Rendered Output</th>
<tr valign="top"><td>
<pre>
<code class="keyword">def</code> <code class="function">example</code>():
<code class="string">"""
This paragraph is not in any section.
Section 1
=========
This is a paragraph in section 1.
Section 1.1
-----------
This is a paragraph in section 1.1.
Section 2
=========
This is a paragraph in section 2.
"""</code>
<i>[...]</i>
</pre>
</td><td>
<b><font size="+2">Section 1</font></b><br>
This is a paragraph in section 1. <br><br>
<b><font size="+1">Section 1.1</font></b><br>
This is a paragraph in section 1.1. <br><br>
<b><font size="+2">Section 2</font></b><br>
This is a paragraph in section 2.
</table>
<a name="literal"/>
<h3> 2.4. Literal Blocks </h3>
<p> Literal blocks are used to represent "preformatted" text.
Everything within a literal block should be displayed exactly as it
appears in plaintext. In particular: </p>
<ul>
<li> Spaces and newlines are preserved. </li>
<li> Text is shown in a monospaced font. </li>
<li> Inline markup is not detected. </li>
</ul>
<p> Literal blocks are introduced by paragraphs ending in the special
sequence "<code>::</code>". Literal blocks end at the first line
whose indentation is equal to or less than that of the paragraph that
introduces them. The following example shows how literal blocks can
be used: </p>
<table border="1" cellspacing="0" cellpadding="3" width="95%">
<tr><th width="50%">Docstring Input</th><th width="50%">Rendered Output</th>
<tr valign="top"><td>
<pre>
<code class="keyword">def</code> <code class="function">example</code>():
<code class="string">"""
The following is a literal block::
Literal /
/ Block
This is a paragraph following the
literal block.
"""</code>
<i>[...]</i>
</pre>
</td><td>
<p>The following is a literal block:</p>
<pre>
Literal /
/ Block
</pre>
<p>This is a paragraph following the literal block.</p>
</table>
<p> Literal blocks are indented relative to the paragraphs that
introduce them; for example, in the previous example, the word
"Literal" is displayed with four leading spaces, not eight. Also,
note that the double colon ("<code>::</code>") that introduces the
literal block is rendered as a single colon. </p>
<a name="doctest"/>
<h3> 2.5. Doctest Blocks </h3>
<p> Doctest blocks contain examples consisting of Python expressions
and their output. Doctest blocks can be used by the <a
href="http://www.python.org/doc/current/lib/module-doctest.html">doctest</a>
module to test the documented object. Doctest blocks begin with the
special sequence "<code>>>></code>". Doctest blocks are
delimited from surrounding blocks by blank lines. Doctest blocks may
not contain blank lines. The following example shows how doctest
blocks can be used: </p>
<table border="1" cellspacing="0" cellpadding="3" width="95%">
<tr><th width="50%">Docstring Input</th><th width="50%">Rendered Output</th>
<tr valign="top"><td>
<pre>
<code class="keyword">def</code> <code class="function">example</code>():
<code class="string">"""
The following is a doctest block:
>>> print (1+3,
... 3+5)
(4, 8)
>>> 'a-b-c-d-e'.split('-')
['a', 'b', 'c', 'd', 'e']
This is a paragraph following the
doctest block.
"""</code>
<i>[...]</i>
</pre>
</td><td>
<p> The following is a doctest block: </p>
<pre>
<code class="prompt">>>></code> <code class="keyword">print</code> <code class="pycode">(1+3,</code>
<code class="prompt">...</code> <code class="pycode">3+5)</code>
<code class="output">(4, 8)</code>
<code class="prompt">>>></code> <code class="string">'a-b-c-d-e'</code><code class="pycode">.split('-')</code>
<code class="output">['a', 'b', 'c', 'd', 'e']</code>
</pre>
<p>This is a paragraph following the doctest block.</p>
</table>
<a name="fieldlist"/>
<h3> 2.6. Fields </h3>
<p> Fields are used to describe specific properties of a documented
object. For example, fields can be used to define the parameters and
return value of a function; the instance variables of a class; and the
author of a module. Each field is marked by a <i>field tag</i>, which
consist of an at sign ("<code>@</code>") followed by a <i>field
name</i>, optionally followed by a space and a <i>field argument</i>,
followed by a colon ("<code>:</code>"). For example,
"<code>@return:</code>" and "<code>@param x:</code>" are field
tags. </p>
<p> Fields can contain paragraphs, lists, literal blocks, and doctest
blocks. All of the blocks contained by a field must all have equal
indentation, and that indentation must be greater than or equal to the
indentation of the field's tag. If the first contained block is a
paragraph, it may appear on the same line as the field tag, separated
from the field tag by one or more spaces. All other block types must
follow on separate lines. </p>
<p> Fields must be placed at the end of the docstring, after the
description of the object. Fields may be included in any order. </p>
<p> Fields do not need to be separated from other blocks by a blank
line. Any line that begins with a field tag followed by a space or
newline is considered a field. </p>
<p> The following example illustrates how fields can be
used: </p>
<table border="1" cellspacing="0" cellpadding="3" width="95%">
<tr><th width="50%">Docstring Input</th><th width="50%">Rendered Output</th>
<tr valign="top"><td>
<pre>
<code class="keyword">def</code> <code class="function">example</code>():
<code class="string">"""
<code class="field">@param x:</code> This is a description of
the parameter x to a function.
Note that the description is
indented four spaces.
<code class="field">@type x:</code> This is a description of
x's type.
<code class="field">@return:</code> This is a description of
the function's return value.
It contains two paragraphs.
"""</code>
<i>[...]</i>
</pre>
</td><td>
<dl><dt><b>Parameters:</b></dt>
<dd><code><b>x</b></code> -
This is a description of the parameter x to a function. Note that the
description is indented four spaces.
<br><i>
(type=This is a description of x's type.)</i>
</dd>
</dl>
<dl><dt><b>Returns:</b></dt>
<dd>
This is a description of the function's return value.
<p>It contains two paragraphs.</p>
</dd>
</td></tr>
</table>
<p> For a list of the fields that are supported by epydoc, see
the <a href="fields.html#fields">epydoc fields page</a>.
<!-- =========== INLINE MARKUP ============= -->
<a name="inline"/>
<h2> 3. Inline Markup </h2>
<p> Inline markup has the form
"<i>x</i><code>{</code>...<code>}</code>", where "<i>x</i>" is a
single capital letter that specifies how the text between the braces
should be rendered. Inline markup is recognized within paragraphs and
section headings. It is <i>not</i> recognized within literal and
doctest blocks. Inline markup can contain multiple words, and can
span multiple lines. Inline markup may be nested. </p>
<p> A matching pair of curly braces is only interpreted as inline
markup if the left brace is immediately preceeded by a capital letter.
So in most cases, you can use curly braces in your text without any
form of escaping. However, you <i>do</i> need to escape curly braces
when: </p>
<ol>
<li> You want to include a single (un-matched) curly brace.
<li> You want to preceed a matched pair of curly braces with a
capital letter. </li>
</ol>
<p> Note that there is no valid Python expression where a pair of
matched curly braces is immediately preceeded by a capital letter
(except within string literals). In particular, you never need to
escape braces when writing Python dictionaries. See <a
href="#escaping">section 3.5</a> for a discussion of escaping. </p>
<a name="basic_inline"/>
<h3> 3.1. Basic Inline Markup </h3>
<p> Epytext defines four types of inline markup that specify how text
should be displayed: </p>
<ul>
<li> <code>I{</code>...<code>}</code>: Italicized text. </li>
<li> <code>B{</code>...<code>}</code>: Bold-faced text. </li>
<li> <code>C{</code>...<code>}</code>: Source code or a Python
identifier. </li>
<li> <code>M{</code>...<code>}</code>: A mathematical
expression. </li>
</ul>
<p> By default, source code is rendered in a fixed width font; and
mathematical expressions are rendered in italics. But those defaults
may be changed by modifying the CSS stylesheet. The following example
illustrates how the four basic markup types can be used: </p>
<table border="1" cellspacing="0" cellpadding="3" width="95%">
<tr><th width="50%">Docstring Input</th><th width="50%">Rendered Output</th>
<tr valign="top"><td>
<pre>
<code class="keyword">def</code> <code class="function">example</code>():
<code class="string">"""
I{B{Inline markup} may be nested; and
it may span} multiple lines.
- I{Italicized text}
- B{Bold-faced text}
- C{Source code}
- M{Math}
Without the capital letter, matching
braces are not interpreted as markup:
C{my_dict={1:2, 3:4}}.
"""</code>
<i>[...]</i>
</pre>
</td><td>
<i><b>Inline markup</b> may be nested; and it may span</i>
multiple lines.
<ul>
<li> <i>Italicized text</i> </li>
<li> <b>Bold-faced text</b> </li>
<li> <code>Source code</code> </li>
<li> Math: <i>m*x+b</i> </li>
</ul>
Without the capital letter, matching
braces are not interpreted as markup:
<code>my_dict={1:2, 3:4}</code>.
</td></tr>
</table>
<a name="urls"/>
<h3> 3.2. URLs </h3>
<p> The inline markup construct
"<code>U{</code><i>text</i><code><</code><i>url</i><code>>}</code>"
is used to create links to external URLs and URIs. "<i>Text</i>" is
the text that should be displayed for the link, and "<i>url</i>" is
the target of the link. If you wish to use the URL as the text for
the link, you can simply write
"<code>U{</code><i>url</i><code>}</code>". Whitespace within URL
targets is ignored. In particular, URL targets may be split over
multiple lines. The following example illustrates how URLs can be
used: </p>
<table border="1" cellspacing="0" cellpadding="3" width="95%">
<tr><th width="50%">Docstring Input</th><th width="50%">Rendered Output</th>
<tr valign="top"><td rowspan="2">
<pre>
<code class="keyword">def</code> <code class="function">example</code>():
<code class="string">"""
- U{www.python.org}
- U{http://www.python.org}
- U{The epydoc homepage<http://
epydoc.sourceforge.net>}
- U{The B{I{Python}} homepage
<www.python.org>}
- U{Edward Loper<mailto:edloper@
gradient.cis.upenn.edu>}
"""</code>
<i>[...]</i>
</pre>
</td><td>
<ul>
<li> <a href="http://www.python.org">www.python.org</a> </li>
<li> <a href="http://www.python.org">http://www.python.org</a> </li>
<li> <a href="http://epydoc.sourceforge.net">The epydoc homepage</a> </li>
<li> <a href="http://www.python.org">The <b><i>Python</i></b> homepage</a> </li>
<li> <a href="mailto:edloper@gradient.cis.upenn.edu">Edward Loper</a> </li>
</ul>
</td></tr>
</table>
<a name="links"/>
<h3> 3.3. Documentation Crossreference Links </h3>
<p> The inline markup construct
"<code>L{</code><i>text</i><code><</code><i>object</i><code>>}</code>"
is used to create links to the documentation for other Python objects.
"<i>Text</i>" is the text that should be displayed for the link, and
"<i>object</i>" is the name of the Python object that should be linked
to. If you wish to use the name of the Python object as the text for
the link, you can simply write
"<code>L{</code><i>object</i><code>}</code>". Whitespace within
object names is ignored. In particular, object names may be split
over multiple lines. The following example illustrates how
documentation crossreference links can be used: </p>
<table border="1" cellspacing="0" cellpadding="3" width="95%">
<tr><th width="50%">Docstring Input</th><th width="50%">Rendered Output</th>
<tr valign="top"><td rowspan="2">
<pre>
<code class="keyword">def</code> <code class="function">example</code>():
<code class="string">"""
- L{x_transform}
- L{search<re.search>}
- L{The I{x-transform} function
<x_transform>}
"""</code>
<i>[...]</i>
</pre>
</td><td>
<ul>
<li> <a href="examples/example.html#x_intercept"
><code>x_transform</code></a></li>
<li> <a href="examples/sre.html#search"
><code>search</code></a></li>
<li> <a href="examples/example.html#x_intercept"
><code>The <i>x-transform</i> function</code></a></li>
</ul>
</td></tr>
</table>
<p> In order to find the object that corresponds to a given name,
epydoc checks the following locations, in order: </p>
<ol>
<li> If the link is made from a class or method docstring, then
epydoc checks for a method, instance variable, or class variable
with the given name. </li>
<li> Next, epydoc looks for an object with the given name in the
current module. </li>
<li> Epydoc then tries to import the given name as a module. If
the current module is contained in a package, then epydoc will also
try importing the given name from all packages containing the
current module. </li>
<li> Finally, epydoc tries to divide the given name into a module
name and an object name, and to import the object from the module.
If the current module is contained in a package, then epydoc will
also try importing the module name from all packages containing the
current module. </li> </ol>
<p> If no object is found that corresponds with the given name, then
epydoc issues a warning. </p>
<a name="indexed"/>
<h3> 3.4. Indexed Terms </h3>
<p> Epydoc automatically creates an index of term definitions for the
API documentation. The inline markup construct
"<code>X{</code>...<code>}</code>" is used to mark terms for inclusion
in the index. The term itself will be italicized; and a link will be
created from the index page to the location of the term in the text.
The following example illustrates how index terms can be used: </p>
<table border="1" cellspacing="0" cellpadding="3" width="95%">
<tr><th width="50%">Docstring Input</th><th width="50%">Rendered Output</th>
<tr valign="top"><td rowspan="2">
<pre>
<code class="keyword">def</code> <code class="function">example</code>():
<code class="string">"""
An X{index term} is a term that
should be included in the index.
"""</code>
<i>[...]</i>
</pre>
</td><td>
An <a name="index-index_term"/><i>index term</i> is a term that
should be included in the index.
</td></tr><tr><td>
<table border="1" cellpadding="3" cellspacing="0" width="95%" class="grayf">
<tr>
<th colspan="2" class="grayc">Index</th></tr>
<tr><td width="15%">index term</td>
<td><i><a href="#index-index_term">example</a></i></tr></td>
<tr><td width="15%">x intercept</td>
<td><i><a href="examples/example.html#index-x_intercept">x_intercept</a></i></tr></td>
<tr><td width="15%">y intercept</td>
<td><i><a href="examples/example.html#index-y_intercept">x_intercept</a></i></tr></td>
</table>
</td></tr>
</table>
<a name="symbols"/>
<h3> 3.5. Symbols </h3>
<p> Symbols are used to insert special characters in your
documentation. A symbol has the form
"<code>S{</code><i>code</i><code>}</code>", where <i>code</i> is a
symbol code that specifies what character should be produced. The
following example illustrates how symbols can be used to generate
special characters: </p>
<table border="1" cellspacing="0" cellpadding="3" width="95%">
<tr><th width="50%">Docstring Input</th><th width="50%">Rendered Output</th>
<tr valign="top"><td rowspan="2">
<pre>
<code class="keyword">def</code> <code class="function">example</code>():
<code class="string">"""
Symbols can be used in equations:
- S{sum}S{alpha}/x S{<=} S{beta}
S{<-} and S{larr} both give left
arrows. Some other arrows are
S{rarr}, S{uarr}, and S{darr}.
"""</code>
<i>[...]</i>
</pre>
</td><td>
<p>Symbols can be used in equations:</p>
<ul><li>∑α/x ≤ β</li></ul>
<p>← and ← both give left arrows. Some other arrows are
→, ↑, and ↓.</p>
</td></tr>
</table>
<p> Although symbols can be quite useful, you should keep in mind that
they can make it harder to read your docstring in plaintext. In
general, symbols should be used sparingly. For a complete list of the
symbols that are currently supported, see the reference documentation
for <a href="api/public/epydoc.markup.epytext-module.html#SYMBOLS"
>epydoc.epytext.SYMBOLS</a>. </p>
<a name="escaping"/>
<h3> 3.6. Escaping </h3>
<p> Escaping is used to write text that would otherwise be interpreted
as epytext markup. Epytext was carefully constructed to minimize the
need for this type of escaping; but sometimes, it is unavoidable.
Escaped text has the form "<code>E{</code><i>code</i><code>}</code>",
where <i>code</i> is an escape code that specifies what character
should be produced. If the escape code is a single character (other
than "<code>{</code>" or "<code>}</code>"), then that character is
produced. For example, to begin a paragraph with a dash (which would
normally signal a list item), write "<code>E{-}</code>". In addition,
two special escape codes are defined: "<code>E{lb}</code>" produces a
left curly brace ("<code>{</code>"); and "<code>E{rb}</code>" produces
a right curly brace ("<code>}</code>"). The following example
illustrates how escaping can be used: </p>
<table border="1" cellspacing="0" cellpadding="3" width="95%">
<tr><th width="50%">Docstring Input</th><th width="50%">Rendered Output</th>
<tr valign="top"><td rowspan="2">
<pre>
<code class="keyword">def</code> <code class="function">example</code>():
<code class="string">"""
This paragraph ends with two
colons, but does not introduce
a literal blockE{:}E{:}
E{-} This is not a list item.
Escapes can be used to write
unmatched curly braces:
E{rb}E{lb}
"""</code>
<i>[...]</i>
</pre>
</td><td>
<p>This paragraph ends with two colons, but does not introduce
a literal block::</p>
<p>- This is not a list item.</p>
<p>Escapes can be used to write unmatched curly braces: }{</p>
</td></tr>
</table>
<a name="graphs"/>
<h3> 3.7. Graphs </h3>
<p> The inline markup construct "<code>G{</code><i>graphtype</i>
<i>args...</i>}</code>" is used to insert automatically generated
graphs. The following graphs generation constructions are currently
defines:</p>
<table border="1" cellspacing="0" cellpadding="3" width="95%">
<tr><th width="10%">Markup</th><th width="90%">Description</th></tr>
<tr valign="top">
<td><pre>G{classtree <code class="user">classes...</code>}</pre></td>
<td> Display a class hierarchy for the given class or classes
(including all superclasses & subclasses). If no class is
specified, and the directive is used in a class's docstring, then
that class's class hierarchy will be displayed. </td></tr>
<tr valign="top">
<td><pre>G{packagetree <code class="user">modules...</code>}</pre></td>
<td> Display a package hierarchy for the given module or modules
(including all subpackages and submodules). If no module is
specified, and the directive is used in a module's docstring, then
that module's package hierarchy will be displayed. </td></tr>
<tr valign="top">
<td><pre>G{impotgraph <code class="user">modules...</code>}</pre></td>
<td> Display an import graph for the given module or modules. If
no module is specified, and the directive is used in a module's
docstring, then that module's import graph will be displayed.
</td></tr>
<tr valign="top">
<td><pre>G{callgraph <code class="user">functions...</code>}</pre></td>
<td> Display a call graph for the given function or functions. If
no function is specified, and the directive is used in a
function's docstring, then that function's call graph will be
displayed. </td></tr>
</table>
<!-- =========== CHARACTERS ============= -->
<a name="characters"/>
<h2> 4. Characters </h2>
<a name="valid_characters"/>
<h3> 4.1. Valid Characters </h3>
<p> Valid characters for an epytext docstring are space ("\040");
newline ("\012"); and any letter, digit, or punctuation, as defined by
the current locale. Control characters ("\000"-"\010" and
"\013"-"\037") are not valid content characters. Tabs ("\011") are
expanded to spaces, using the same algorithm used by the Python
parser. Carridge-return/newline pairs ("\015\012") are converted to
newlines. </p>
<a name="content_characters"/>
<h3> 4.2. Content Characters </h3>
<p> Characters in a docstring that are not involved in markup are
called <i>content characters</i>. Content characters are always
displayed as-is. In particular, HTML codes are <i>not</i> passed
through. For example, consider the following example: </p>
<table border="1" cellspacing="0" cellpadding="3" width="95%">
<tr><th width="50%">Docstring Input</th><th width="50%">Rendered Output</th>
<tr valign="top"><td>
<pre>
<code class="keyword">def</code> <code class="function">example</code>():
<code class="string">"""
<B>test</B>
"""</code>
<i>[...]</i>
</pre>
</td><td>
<B>test</B>
</table>
<p> The docstring is rendered as "<B>test</B>", and not
as the word "test" in bold face. </p>
<a name="whitespace"/>
<h3> 4.3. Spaces and Newlines </h3>
<p> In general, spaces and newlines within docstrings are treated as
<i>soft spaces</i>. In other words, sequences of spaces and newlines
(that do not contain a blank line) are rendered as a single space, and
words may wrapped at spaces. However, within literal blocks and
doctest blocks, spaces and newlines are preserved, and no
word-wrapping occurs; and within URL targets and documentation link
targets, whitespace is ignored. </p>
<!-- =========== WARNINGS ============= -->
<!-- (make sure this is consistant w/ the man page!!) -->
<a name="warnings"/>
<h2> 5. Warnings and Errors </h2>
<p>If epydoc encounters an error while processing a docstring, it
issues a warning message that describes the error, and attempts to
continue generating documentation. Errors related to epytext are
divided into three categories: </p>
<ul>
<li> <b>Epytext Warnings</b> are caused by epytext docstrings that
contain questionable or suspicious markup. Epytext warnings do
not prevent the docstring in question from being parsed. </li>
<li> <b> Field Warnings</b> are caused by epytext docstrings
containing invalid fields. The contents of the invalid field are
generally ignored. </li>
<li> <b>Epytext Errors</b> are caused by epytext docstrings that
contain invalid markup. Whenever an epytext error is detected,
the docstring in question is treated as a plaintext docstring. </li>
</ul>
<p> The following sections list and describe the warning messages that
epydoc can generate. They are intended as a reference resource, which
you can search for more information and possible causes if you
encounter an error and do not understand it. These descriptions are
also available in the <a
href="epydoc-man.html#lbAH"><code>epydoc(1)</code> man page</a>. </p>
<h3> 5.1. Epytext Warnings </h3>
<ul>
<li><b class="error">Possible mal-formatted field item.</b> <br />
Epytext detected a line that looks like a field item, but is not
correctly formatted. This typically occurs when the trailing colon
(<b>":"</b>) is not included in the field tag.
<li><b class="error">Possible heading typo.</b> <br />
Epytext detected a pair of lines that looks like a heading, but the
number of underline characters does not match the number of
characters in the heading. The number of characters in these two
lines must match exactly for them to be considered a
heading.
</ul>
<h3> 5.2. Field Warnings </h3>
<ul>
<li><b class="error"><code>@param</code> for unknown parameter <i>param</i>.</b> <br />
A <code>@param</code> field was used to specify the type for a parameter that is
not included in the function's signature. This is typically caused
by a typo in the parameter name.
<li><b class="error"><i>tag</i> did not expect an argument.</b> <br />
The field tag <i>tag</i> was used with an argument, but it does not
take one.
<li><b class="error"><i>tag</i> expected an argument.</b> <br />
The field tag <i>tag</i> was used without an argument, but it
requires one.
<li><b class="error"><code>@type</code> for unknown parameter <i>param</i>.</b> <br />
A <code>@type</code> field was used to specify the type for a parameter that is
not included in the function's signature. This is typically caused
by a typo in the parameter name.
<li><b class="error"><code>@type</code> for unknown variable <i>var</i>.</b> <br />
A <code>@type</code> field was used to specify the type for a variable, but no
other information is known about the variable. This is typically
caused by a typo in the variable name.
<li><b class="error">Unknown field tag <i>tag</i>.</b> <br />
A docstring contains a field with the unknown tag <i>tag</i>.
<li><b class="error">Redefinition of <i>field</i>.</b> <br />
Multiple field tags define the value of <i>field</i> in the same
docstring, but <i>field</i> can only take a single value.
</ul>
<h3> 5.3. Epytext Errors </h3>
<ul>
<li><b class="error">Bad link target.</b> <br />
The target specified for an inline link contruction (<code>L{...}</code>)
is not well-formed. Link targets must be valid python identifiers.
<li><b class="error">Bad uri target.</b> <br />
The target specified for an inline uri contruction (<code>U{...}</code>)
is not well-formed. This typically occurs if inline markup is
nested inside the URI target.
<li><b class="error">Fields must be at the top level.</b> <br />
The list of fields (<code>@param</code>, etc.) is contained by some other
block structure (such as a list or a section).
<li><b class="error">Fields must be the final elements in an epytext
string.</b> <br />
The list of fields (<code>@param</code>, etc.) is not at the end of a
docstring.
<li><b class="error">Headings must occur at top level.</b> <br />
The heading is contianed in some other block structure (such as a
list).
<li><b class="error">Improper doctest block indentation.</b> <br />
The doctest block dedents past the indentation of its initial prompt
line.
<li><b class="error">Improper heading indentation.</b> <br />
The heading for a section is not left-aligned with the paragraphs in
the section that contains it.
<li><b class="error">Improper paragraph indentation.</b> <br />
The paragraphs within a block are not left-aligned. This error is
often generated when plaintext docstrings are parsed using epytext.
<li><b class="error">Invalid escape.</b> <br />
An unknown escape sequence was used with the inline escape
construction (<code>E{...}</code>).
<li><b class="error">Lists must be indented.</b> <br />
An unindented line immediately following a paragraph starts with a
list bullet. Epydoc is not sure whether you meant to start a new
list item, or meant for a paragraph to include a word that looks
like a bullet. If you intended the former, then indent the list.
If you intended the latter, then change the word-wrapping of the
paragraph, or escape the first character of the word that looks like
a bullet.
<li><b class="error">Unbalanced '{'.</b> <br />
The docstring contains unbalanced braces. Epytext requires that all
braces must be balanced. To include a single unbalanced brace, use
the escape sequences <code>E{lb}</code> (left brace) and <code>E{rb}</code> (right brace).
<li><b class="error">Unbalanced '}'.</b> <br />
The docstring contains unbalanced braces. Epytext requires that all
braces must be balanced. To include a single unbalanced brace, use
the escape sequences <code>E{lb}</code> (left brace) and <code>E{rb}</code> (right brace).
<li><b class="error">Unknown inline markup tag.</b> <br />
An unknown tag was used with the inline markup construction
(<code><i>x</i>{...}</code>).
<li><b class="error">Wrong underline character for heading.</b> <br />
The underline character used for this section heading does not
indicate an appopriate section level. The "<code>=</code>" character
should be used to underline sections; "<code>-</code>" for subsections;
and "<code>~</code>" for subsubsections.
</ul>
</div>
<table width="100%" class="navbox" cellpadding="1" cellspacing="0">
<tr>
<a class="nav" href="index.html">
<td align="center" width="20%" class="nav">
<a class="nav" href="index.html">
Home</a></td></a>
<a class="nav" href="installing.html">
<td align="center" width="20%" class="nav">
<a class="nav" href="installing.html">
Installing Epydoc</a></td></a>
<a class="nav" href="using.html">
<td align="center" width="20%" class="nav">
<a class="nav" href="using.html">
Using Epydoc</a></td></a>
<a class="nav" href="epytext.html">
<td align="center" width="20%" class="navselect" class="nav">
<a class="nav" href="epytext.html">
Epytext</a></td></a>
<td align="center" width="20%" class="nav">
<A href="http://sourceforge.net/projects/epydoc">
<IMG src="sflogo.png"
width="88" height="26" border="0" alt="SourceForge"
align="top"/></A></td>
</tr>
</table>
</body>
</html>
|