1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819
|
.. include:: ../header.txt
============================
The Docutils Document Tree
============================
A Guide to the Docutils DTD
***************************
:Author: David Goodger
:Contact: docutils-develop@lists.sourceforge.net
:Revision: $Revision: 9647 $
:Date: $Date: 2024-04-18 13:18:00 +0200 (Do, 18. Apr 2024) $
:Copyright: This document has been placed in the public domain.
.. contents:: :depth: 1
This document describes the XML data structure of Docutils_ documents:
the relationships and semantics of elements and attributes.
The Docutils document structure is formally defined by the
`Docutils Generic DTD`_ XML document type definition, `docutils.dtd`_,
which is the definitive source for details of element structural
relationships.
The reader is assumed to have some familiarity with XML_ or SGML,
and an understanding of the data structure meaning of "tree".
For a list of introductory articles, see `Introducing the Extensible
Markup Language (XML)`_.
Docutils implements the Document tree data structure as a Python class
library. Details can be found in the API documentation ("docstrings")
of the docutils.nodes_ module.
The reStructuredText_ markup language is used for illustrative examples
throughout this document. For a gentle introduction, see `A
ReStructuredText Primer`_. For complete technical details, see the
`reStructuredText Markup Specification`_.
.. _XML: https://en.wikipedia.org/wiki/XML
.. _Docutils: https://docutils.sourceforge.io/
.. _Docutils Generic DTD:
.. _Docutils DTD:
.. _docutils.dtd: docutils.dtd
.. _Introducing the Extensible Markup Language (XML):
http://xml.coverpages.org/xmlIntro.html
.. _docutils.nodes: https://docutils.sourceforge.io/docutils/nodes.py
.. _reStructuredText: https://docutils.sourceforge.io/rst.html
.. _A ReStructuredText Primer: ../user/rst/quickstart.html
-------------------
Element Hierarchy
-------------------
.. contents:: :local:
Below is a simplified diagram of the hierarchy of elements in the
Docutils document tree structure. An element may contain any other
elements immediately below it in the diagram. Notes are written in
square brackets. Element types in parentheses indicate recursive or
one-to-many relationships; sections may contain (sub)sections, tables
contain further body elements, etc. ::
+--------------------------------------------------------------------+
| document [may begin with a title, subtitle, decoration, docinfo] |
| +--------------------------------------+
| | sections [each begins with a title] |
+-----------------------------+-------------------------+------------+
| [body elements:] | (sections) |
| | - literal | - lists | | - hyperlink +------------+
| | blocks | - tables | | targets |
| para- | - doctest | - block | foot- | - sub. defs |
| graphs | blocks | quotes | notes | - comments |
+---------+-----------+----------+-------+--------------+
| [text]+ | [text] | (body elements) | [text] |
| (inline +-----------+------------------+--------------+
| markup) |
+---------+
The Docutils document model uses a simple, recursive model for section
structure. A `\<document>`_ node may contain body elements and
`\<section>`_ elements.
Sections in turn may contain body elements and sections.
The level (depth) of a section element is determined from its physical
nesting level; unlike other document models (``<h1>`` in HTML_,
``<sect1>`` in DocBook_, ``<div1>`` in XMLSpec_) the level is not
incorporated into the element name.
The Docutils document model uses strict element content models. Every
element has a unique structure and semantics, but elements may be
classified into general categories (below). Only elements which are
meant to directly contain text data have a mixed content model, where
text data and inline elements may be intermixed. This is unlike the
much looser HTML_ document model, where paragraphs and text data may
occur at the same level.
.. _HTML: https://www.w3.org/TR/html52/
.. _XMLSpec: https://www.w3.org/XML/1998/06/xmlspec-report.htm
.. _DocBook: https://tdg.docbook.org/tdg/5.1/
.. _DocBook <caution>: https://tdg.docbook.org/tdg/5.1/caution.html
.. _DocBook <footnote>: https://tdg.docbook.org/tdg/5.1/footnote.html
.. _DocBook <footnoteref>: https://tdg.docbook.org/tdg/5.1/footnoteref.html
.. _DocBook <imagedata>: https://tdg.docbook.org/tdg/5.1/imagedata
.. _DocBook <important>: https://tdg.docbook.org/tdg/5.1/important.html
.. _DocBook <note>: https://tdg.docbook.org/tdg/5.1/note.html
.. _DocBook <tip>: https://tdg.docbook.org/tdg/5.1/tip.html
.. _DocBook <warning>: https://tdg.docbook.org/tdg/5.1/warning.html
Structural Elements
===================
Structural elements may only contain child elements; they do not
directly contain text data. Structural elements may contain body
elements or further structural elements. Structural elements can only
be child elements of other structural elements.
Category members: `\<document>`_, `\<section>`_, `\<topic>`_, `\<sidebar>`_
Structural Subelements
----------------------
Structural subelements are child elements of structural elements.
Simple structural subelements (`\<title>`_, `\<subtitle>`_) contain text
data; the others are compound elements and do not directly contain text
data.
Category members: `\<title>`_, `\<subtitle>`_, `\<decoration>`_,
`\<docinfo>`_, `\<meta>`_, `\<transition>`_
Bibliographic Elements
``````````````````````
The `\<docinfo>`_ element is an optional child of `\<document>`_.
It groups bibliographic elements together. All bibliographic elements
except `\<authors>`_ and `\<field>`_ contain text data. `\<authors>`_
contains further bibliographic elements (most notably `\<author>`_).
`\<field>`_ contains `\<field_name>`_ and `\<field_body>`_ body
subelements.
Category members: `\<address>`_, `\<author>`_, `\<authors>`_,
`\<contact>`_, `\<copyright>`_, `\<date>`_, `\<field>`_,
`\<organization>`_, `\<revision>`_, `\<status>`_, `\<version>`_
Decorative Elements
```````````````````
The `\<decoration>`_ element is also an optional child of `\<document>`_.
It groups together elements used to generate page headers and footers.
Category members: `\<footer>`_, `\<header>`_
Body Elements
=============
Body elements are contained within structural elements and compound
body elements. There are two subcategories of body elements: simple__
and compound__.
Category members: `\<admonition>`_, `\<attention>`_, `\<block_quote>`_,
`\<bullet_list>`_, `\<caution>`_, `\<citation>`_, `\<comment>`_,
`\<compound>`_, `\<container>`_, `\<danger>`_, `\<definition_list>`_,
`\<doctest_block>`_, `\<enumerated_list>`_, `\<error>`_,
`\<field_list>`_, `\<figure>`_, `\<footnote>`_, `\<hint>`_, `\<image>`_,
`\<important>`_, `\<line_block>`_, `\<literal_block>`_, `\<math_block>`_,
`\<note>`_, `\<option_list>`_, `\<paragraph>`_, `\<pending>`_, `\<raw>`_,
`\<rubric>`_, `\<substitution_definition>`_, `\<system_message>`_,
`\<table>`_, `\<target>`_, `\<tip>`_, `\<warning>`_
__ `simple body elements`_
__ `compound body elements`_
Simple Body Elements
--------------------
Simple body elements are empty or directly contain text data. Those
that contain text data may also contain inline elements. Such
elements therefore have a "mixed content model".
Category members: `\<comment>`_, `\<doctest_block>`_, `\<image>`_,
`\<literal_block>`_, `\<math_block>`_, `\<paragraph>`_, `\<pending>`_,
`\<raw>`_, `\<rubric>`_, `\<substitution_definition>`_, `\<target>`_
Compound Body Elements
----------------------
Compound body elements contain local substructure (body subelements)
and further body elements. They do not directly contain text data.
Category members: `\<admonition>`_, `\<attention>`_, `\<block_quote>`_,
`\<bullet_list>`_, `\<caution>`_, `\<citation>`_, `\<compound>`_,
`\<container>`_, `\<danger>`_, `\<definition_list>`_,
`\<enumerated_list>`_, `\<error>`_, `\<field_list>`_, `\<figure>`_,
`\<footnote>`_, `\<hint>`_, `\<important>`_, `\<line_block>`_,
`\<note>`_, `\<option_list>`_, `\<system_message>`_, `\<table>`_,
`\<tip>`_, `\<warning>`_
Body Subelements
````````````````
Compound body elements contain specific subelements (e.g. `\<bullet_list>`_
contains `\<list_item>`_). Subelements may themselves be compound elements
(containing further child elements, like `\<field>`_) or simple data
elements (containing text data, like `\<field_name>`_). These subelements
always occur within specific parent elements, never at the body
element level (beside paragraphs, etc.).
Category members (simple): `\<attribution>`_, `\<caption>`_,
`\<classifier>`_, `\<colspec>`_, `\<field_name>`_, `\<label>`_,
`\<line>`_, `\<option_argument>`_, `\<option_string>`_, `\<term>`_
Category members (compound): `\<definition>`_,
`\<definition_list_item>`_, `\<description>`_, `\<entry>`_, `\<field>`_,
`\<field_body>`_, `\<legend>`_, `\<list_item>`_, `\<option>`_,
`\<option_group>`_, `\<option_list_item>`_, `\<row>`_, `\<tbody>`_,
`\<tgroup>`_, `\<thead>`_
Inline Elements
===============
Inline elements directly contain text data, and may also contain
further inline elements. Inline elements are contained within simple
body elements. Most inline elements have a "mixed content model".
Category members: `\<abbreviation>`_, `\<acronym>`_,
`\<citation_reference>`_, `\<emphasis>`_, `\<footnote_reference>`_,
`\<generated>`_, `\<image>`_, `\<inline>`_, `\<literal>`_,
`\<math>`_, `\<problematic>`_, `\<raw>`_, `\<reference>`_,
`\<strong>`_, `\<subscript>`_, `\<substitution_reference>`_,
`\<superscript>`_, `\<target>`_, `\<title_reference>`_
-------------------
Element Reference
-------------------
.. contents:: :local:
:depth: 1
Each element in the DTD (document type definition) is described in its
own section below. Each section contains an introduction plus the
following subsections:
* Details (of element relationships and semantics):
:Category: One or more references to the element categories in
`Element Hierarchy`_ above. Some elements belong to more than one
category.
:Analogues: Describes analogous elements in well-known document
models such as HTML_ or DocBook_. Lists similarities and
differences.
:Processing: Lists formatting or rendering recommendations for the
element.
:Parents: A list of elements which may contain the element.
:Children: A list of elements which may occur within the element
followed by the formal XML content model from the `Docutils DTD`_.
:Attributes: Describes (or refers to descriptions of) the possible
values and semantics of each attribute.
:Parameter Entities:
Lists the `parameter entities <parameter entity reference_>`__
which directly or indirectly include the element.
* Examples: reStructuredText_ examples are shown along with
fragments of the document trees resulting from parsing.
_`Pseudo-XML` is used for the results of parsing and processing.
Pseudo-XML is a representation of XML where nesting is indicated by
indentation and end-tags are not shown. Some of the precision of
real XML is given up in exchange for easier readability. For
example, the following are equivalent:
Real XML::
<document>
<section ids="a-title" names="a title">
<title>A Title</title>
<paragraph>A paragraph.</paragraph>
</section>
</document>
Pseudo-XML::
<document>
<section ids="a-title" names="a title">
<title>
A Title
<paragraph>
A paragraph.
--------------------
Many of the element reference sections below are marked "_`to be
completed`". Please help complete this document by contributing to
its writing.
<abbreviation>
==============
The <abbreviation> element is an inline element used to represent an
abbreviation being used in the document.
An example of an abbreviation is 'St' being used instead of 'Street'.
Details
-------
:Category: `Inline Elements`_
:Analogues: <abbreviation> is analogous to the HTML <abbr> element.
:Parents: All elements employing the `%inline.elements;`_ parameter
entity in their content models may contain <abbreviation>.
:Children: <abbreviation> elements may contain text data
plus `inline elements`_ (`%text.model;`_).
:Attributes: The <abbreviation> element contains only the `common attributes`_.
Examples
--------
The reStructuredText `abbreviation role`_ creates an <abbreviation> element::
:abbreviation:`St` is a common abbreviation for "street".
Pseudo-XML_ fragment from simple parsing::
<paragraph>
<abbreviation>
St
is a common abbreviation for "street".
.. _abbreviation role: rst/roles.html#abbreviation
<acronym>
=========
`To be completed`_.
<address>
===========
The <address> element holds the surface mailing address information
for the author(s) (individual or group) of the document, or a third-party
contact address. Its structure is identical to that of the
`\<literal_block>`_ element: whitespace is significant, especially
newlines.
Details
-------
:Category: `Bibliographic Elements`_
:Analogues: <address> is analogous to the DocBook_ <address> element.
:Processing: As with the `\<literal_block>`_ element, newlines and other
whitespace is significant and must be preserved.
However, a monospaced typeface need not be used.
See also `\<docinfo>`_.
:Parents: The following elements may contain <address>:
`\<docinfo>`_, `\<authors>`_.
:Children: <address> elements contain text data plus `inline elements`_
(`%text.model;`_).
:Attributes: The <address> element contains the `common attributes`_
plus `xml:space`_.
:Parameter Entities: The `%bibliographic.elements;`_ parameter entity
directly includes <address>.
Examples
--------
In reStructuredText, "address" is one of the registered
`bibliographic fields`_::
Document Title
==============
:Address: 123 Example Ave.
Example, EX
Complete pseudo-XML_ result after parsing and applying transforms_::
<document ids="document-title" names="document title">
<title>
Document Title
<docinfo>
<address>
123 Example Ave.
Example, EX
See `\<docinfo>`_ for a more complete example, including processing
context.
<admonition>
============
The <admonition> element is a generic, titled *admonition*,
a distinctive and self-contained notice.
See also the specific admonition elements
`\<attention>`_ `\<caution>`_, `\<danger>`_, `\<error>`_, `\<hint>`_,
`\<important>`_, `\<note>`_, `\<tip>`_, and `\<warning>`_.
Details
-------
:Category: `Compound Body Elements`_
:Analogues: The generic <admonition> has no direct analogues in common DTDs.
It can be emulated with primitives and type effects.
The specific admonitions `\<caution>`_, `\<note>`_,
`\<tip>`_, and `\<warning>`_ are analogous to the
respective DocBook_ elements.
:Processing: Rendered distinctly (inset and/or in a box, etc.).
:Parents: All elements employing the `%body.elements;`_
or `%structure.model;`_ parameter entities in
their content models may contain <admonition>.
:Children: <admonition> elements begin with a `\<title>`_ and may contain
one or more `body elements`_.
:Attributes: The <admonition> element contains only the `common attributes`_.
:Parameter Entities: The `%body.elements;`_ parameter entity directly
includes <admonition>. The `%structure.model;`_
parameter entity indirectly includes <admonition>.
Examples
--------
The reStructuredText `"admonition" directive`_ creates a generic
<admonition> element::
.. admonition:: By the way...
You can make up your own admonition too.
Pseudo-XML_ fragment from simple parsing::
<admonition class="admonition-by-the-way">
<title>
By the way...
<paragraph>
You can make up your own admonition too.
<attention>
===========
The <attention> element is an *admonition*, a distinctive and
self-contained notice. See also the generic `\<admonition>`_
and the other specific admonition elements `\<caution>`_,
`\<danger>`_, `\<error>`_, `\<hint>`_, `\<important>`_, `\<note>`_,
`\<tip>`_, and `\<warning>`_.
Details
-------
:Category: `Compound Body Elements`_
:Analogues: <attention> has no direct analogues in common DTDs.
It can be emulated with primitives and type effects.
:Processing: Rendered distinctly (inset and/or in a box, etc.),
with the generated title "Attention!" (or similar).
:Parents: All elements employing the `%body.elements;`_ or
`%structure.model;`_ parameter entities in their
content models may contain <attention>.
:Children: <attention> elements contain one or more `body elements`_.
:Attributes: The <attention> element contains only the `common attributes`_.
:Parameter Entities: The `%body.elements;`_ parameter entity
directly includes <attention>. The `%structure.model;`_
parameter entity indirectly includes <attention>.
Examples
--------
A reStructuredText `"attention" directive`_::
.. Attention:: All your base are belong to us.
Pseudo-XML_ fragment from simple parsing::
<attention>
<paragraph>
All your base are belong to us.
<attribution>
=============
`To be completed`_.
<author>
========
The <author> element holds the name of the author (or one of the authors)
of the document.
Details
-------
:Category: `Bibliographic Elements`_
:Analogues: <author> is analogous to the DocBook_ <author> element.
:Processing: See `\<docinfo>`_.
:Parents: The following elements may contain <author>:
`\<docinfo>`_, `\<authors>`_.
:Children: <author> elements may contain text data plus `inline elements`_
(`%text.model;`_).
:Attributes: The <author> element contains only the `common attributes`_.
:Parameter Entities: The `%bibliographic.elements;`_ parameter entity
directly includes <author>.
Examples
--------
In reStructuredText, "author" is one of the registered
`bibliographic fields`_::
Document Title
==============
:Author: J. Random Hacker
Complete pseudo-XML_ result after parsing and applying transforms_::
<document ids="document-title" names="document title">
<title>
Document Title
<docinfo>
<author>
J. Random Hacker
See `\<docinfo>`_ for a more complete example, including processing
context.
<authors>
=========
The <authors> element is a container for author information for
documents with multiple authors.
Details
-------
:Category: `Bibliographic Elements`_
:Analogues: <authors> is analogous to the DocBook_ <authors> element.
:Processing: See `\<docinfo>`_.
:Parents: Only the `\<docinfo>`_ element contains <authors>.
:Children: <authors> elements may contain the following elements:
`\<author>`_, `\<organization>`_, `\<address>`_, `\<contact>`_::
((author, organization?, address?, contact?)+)
:Attributes: The <authors> element contains only the `common attributes`_.
:Parameter Entities: The `%bibliographic.elements;`_ parameter entity
directly includes <authors>.
Examples
--------
In reStructuredText, "authors" is one of the registered
`bibliographic fields`_::
Document Title
==============
:Authors: J. Random Hacker; Jane Doe
Complete pseudo-XML_ result after parsing and applying transforms_::
<document ids="document-title" names="document title">
<title>
Document Title
<docinfo>
<authors>
<author>
J. Random Hacker
<author>
Jane Doe
In reStructuredText, multiple author's names are separated with
semicolons (";") or commas (","); semicolons take precedence.
There is currently no way to represent the author's organization,
address, or contact in a reStructuredText "Authors" field.
See `\<docinfo>`_ for a more complete example, including processing
context.
<block_quote>
=============
The <block_quote> element is used for quotations set off from the
main text (standalone).
Details
-------
:Category: `Compound Body Elements`_
:Analogues: <block_quote> is analogous to the <blockquote> element
in both HTML and DocBook_.
:Processing: <block_quote> elements serve to set their contents off from the
main text, typically with indentation and/or other decoration.
:Parents: All elements employing the `%body.elements;`_
or `%structure.model;`_ parameter entities in their
content models may contain <block_quote>.
:Children: <block_quote> elements contain `body elements`_
followed by an optional `\<attribution>`_ element.
:Attributes: The <block_quote> element contains only the `common attributes`_.
:Parameter Entities: The `%body.elements;`_ parameter entity
directly includes <block_quote>. The `%structure.model;`_
parameter entity indirectly includes <block_quote>.
Examples
--------
In reStructuredText, an indented text block without preceding markup
is a `block quote`_::
As a great palaeontologist once said,
This theory, that is mine, is mine.
-- Anne Elk (Miss)
Pseudo-XML_ fragment from simple parsing::
<paragraph>
As a great palaeontologist once said,
<block_quote>
<paragraph>
This theory, that is mine, is mine.
<attribution>
Anne Elk (Miss)
<bullet_list>
=============
The <bullet_list> element contains `\<list_item>`_ elements which are
uniformly marked with bullets. Bullets are typically simple dingbats
(symbols) such as circles and squares.
Details
-------
:Category: `Compound Body Elements`_
:Analogues: <bullet_list> is analogous to the HTML<ul> element [#]_
and to the DocBook_ <itemizedlist> element.
:Processing: Each list item should begin a new vertical block,
prefaced by a bullet/dingbat.
:Parents: All elements employing the `%body.elements;`_ or
`%structure.model;`_ parameter entities in their content models
may contain <bullet_list>.
:Children: <bullet_list> elements contain one or more
`\<list_item>`_ elements.
:Attributes: The <bullet_list> element contains the `common attributes`_
plus bullet_.
:Parameter Entities: The `%body.elements;`_ parameter entity directly includes
<bullet_list>. The `%structure.model;`_ parameter entity
indirectly includes <bullet_list>.
.. [#] HTML's <ul> is short for "unordered list", which we consider to be
a misnomer. "Unordered" implies that the list items may be randomly
rearranged without affecting the meaning of the list. Bullet lists
*are* often ordered; the ordering is simply left implicit.
Examples
--------
A reStructuredText `bullet list`_::
- Item 1, paragraph 1.
Item 1, paragraph 2.
- Item 2.
Pseudo-XML_ fragment from simple parsing::
<bullet_list bullet="-">
<list_item>
<paragraph>
Item 1, paragraph 1.
<paragraph>
Item 1, paragraph 2.
<list_item>
<paragraph>
Item 2.
See `\<list_item>`_ for another example.
<caption>
=========
`To be completed`_.
<caution>
=========
The <caution> element is an *admonition*, a distinctive and
self-contained notice. See also the generic `\<admonition>`_ and the
other specific admonition elements `\<attention>`_, `\<danger>`_,
`\<error>`_, `\<hint>`_, `\<important>`_, `\<note>`_, `\<tip>`_, and
`\<warning>`_.
Details
-------
:Category: `Compound Body Elements`_
:Analogues: <caution> is analogous to the `DocBook \<caution>`_ element.
:Processing: Rendered distinctly (inset and/or in a box, etc.), with the
generated title "Caution" (or similar).
:Parents: All elements employing the `%body.elements;`_ or
`%structure.model;`_ parameter entities in their
content models may contain <caution>.
:Children: <caution> elements contain one or more `body elements`_.
:Attributes: The <caution> element contains only the `common attributes`_.
:Parameter Entities: The `%body.elements;`_ parameter entity
directly includes <caution>. The `%structure.model;`_
parameter entity indirectly includes <caution>.
Examples
--------
A reStructuredText `"caution" directive`_::
.. Caution:: Don't take any wooden nickels.
Pseudo-XML_ fragment from simple parsing::
<caution>
<paragraph>
Don't take any wooden nickels.
<citation>
==========
`To be completed`_.
<citation_reference>
====================
`To be completed`_.
<classifier>
============
The <classifier> element contains the classification or type
of the `\<term>`_ being defined in a `\<definition_list>`_.
For example, it can be used to indicate the type of a variable.
Details
-------
:Category: `Body Subelements`_ (simple)
:Analogues: <classifier> has no direct analogues in common DTDs.
It can be emulated with primitives or type effects.
:Processing: See `\<definition_list_item>`_.
:Parents: Only the `\<definition_list_item>`_ element contains <classifier>.
:Children: <classifier> elements may contain text data plus
`inline elements`_ (`%text.model;`_).
:Attributes: The <classifier> element contains only the `common attributes`_.
Examples
--------
A reStructuredText `definition list`_ with classifiers::
name : string
Customer name.
i : int
Temporary index variable.
Pseudo-XML_ fragment from simple parsing::
<definition_list>
<definition_list_item>
<term>
name
<classifier>
string
<definition>
<paragraph>
Customer name.
<definition_list_item>
<term>
i
<classifier>
int
<definition>
<paragraph>
Temporary index variable.
<colspec>
=========
Specifications for a column in a `\<table>`_.
Details
-------
:Category: `Body Subelements`_ (simple)
:Analogues: <colspec> is based on the [exchange-table-model]_
and analogous to the DocBook_ <colspec> element.
:Processing: The <colspec> element contains layout information
for the parent `\<table>`_.
:Parents: Only the `\<tgroup>`_ element contains <colspec>.
:Children: <colspec> is an empty element and has no children.
:Attributes: The <colspec> element contains the optional "colnum", "colname",
"colwidth", colsep_, rowsep_, align_, "char", and
"charoff" attributes defined in the exchange-table-model_
plus the `common attributes`_ and `stub`_.
Docutils uses only colwidth_ and stub_.
.. attention::
In contrast to the definition in the exchange-table-model_,
unitless values of the "colwidth" are interpreted as
proportional values, not fixed values with unit "pt".
.. The reference implementation `html4css2` converts
column widths values to percentages.
Future versions of Docutils may use the standard form
``number*``, e.g., “5*” for 5 times the proportion.
Examples
--------
See `\<table>`_.
<comment>
=========
`To be completed`_.
<compound>
==========
`To be completed`_.
<contact>
=========
The <contact> element holds contact information for the author
(individual or group) of the document, or a third-party contact.
It is typically used for an email or web address.
Details
-------
:Category: `Bibliographic Elements`_
:Analogues: <contact> is analogous to the DocBook_ <email> element.
The HTML <address> element serves a similar purpose.
:Processing: See `\<docinfo>`_.
:Parents: The following elements may contain <contact>:
`\<docinfo>`_, `\<authors>`_.
:Children: <contact> elements may contain text data
plus `inline elements`_ (`%text.model;`_).
:Attributes: The <contact> element contains only the `common attributes`_.
:Parameter Entities: The `%bibliographic.elements;`_ parameter entity
directly includes <contact>.
Examples
--------
In reStructuredText, "contact" is one of the registered
`bibliographic fields`_::
Document Title
==============
:Contact: jrh@example.com
Complete pseudo-XML_ result after parsing and applying transforms_::
<document ids="document-title" names="document title">
<title>
Document Title
<docinfo>
<contact>
<reference refuri="mailto:jrh@example.com">
jrh@example.com
See `\<docinfo>`_ for a more complete example, including processing
context.
<container>
===========
`To be completed`_.
<copyright>
===========
The <copyright> element contains the document's copyright statement.
Details
-------
:Category: `Bibliographic Elements`_
:Analogues: <copyright> is analogous to the DocBook_ <copyright> element.
:Processing: See `\<docinfo>`_.
:Parents: Only the `\<docinfo>`_ element contains <copyright>.
:Children: <copyright> elements may contain text data plus
`inline elements`_ (`%text.model;`_).
:Attributes: The <copyright> element contains only the `common attributes`_.
:Parameter Entities: The `%bibliographic.elements;`_ parameter entity
directly includes <copyright>.
Examples
--------
In reStructuredText, "copyright" is one of the registered
`bibliographic fields`_::
Document Title
==============
:Copyright: This document has been placed in the public domain.
Complete pseudo-XML_ result after parsing and applying transforms_::
<document ids="document-title" names="document title">
<title>
Document Title
<docinfo>
<copyright>
This document has been placed in the public domain.
See `\<docinfo>`_ for a more complete example,
including processing context.
<danger>
========
The <danger> element is an *admonition*, a distinctive and
self-contained notice. See also the generic `\<admonition>`_
and the other specific admonition elements `\<attention>`_,
`\<caution>`_, `\<error>`_, `\<hint>`_, `\<important>`_,
`\<note>`_, `\<tip>`_, and `\<warning>`_.
Details
-------
:Category: `Compound Body Elements`_
:Analogues: <danger> has no direct analogues in common DTDs.
It can be emulated with primitives and type effects.
:Processing: Rendered distinctly (inset and/or in a box, etc.),
with the generated title "!DANGER!" (or similar).
:Parents: All elements employing the `%body.elements;`_
or `%structure.model;`_ parameter entities
in their content models may contain <danger>.
:Children: <danger> elements contain one or more `body elements`_.
:Attributes: The <danger> element contains only the `common attributes`_.
:Parameter Entities: The `%body.elements;`_ parameter entity
directly includes <danger>. The `%structure.model;`_
parameter entity indirectly includes <danger>.
Examples
--------
A reStructuredText `"danger" directive`_::
.. DANGER:: Mad scientist at work!
Pseudo-XML_ fragment from simple parsing::
<danger>
<paragraph>
Mad scientist at work!
<date>
======
The <date> element contains the date of publication, release, or
last modification of the document.
Details
-------
:Category: `Bibliographic Elements`_
:Analogues: <date> is analogous to the DocBook_ <date> element.
:Processing: Often used with the RCS/CVS keyword "Date". See `\<docinfo>`_.
:Parents: Only the `\<docinfo>`_ element contains <date>.
:Children: <date> elements may contain text data plus `inline elements`_
(`%text.model;`_).
:Attributes: The <date> element contains only the `common attributes`_.
:Parameter Entities: The `%bibliographic.elements;`_ parameter entity
directly includes <date>.
Examples
--------
In reStructuredText, "date" is one of the registered
`bibliographic fields`_::
Document Title
==============
:Date: 2002-08-20
Complete pseudo-XML_ result after parsing and applying transforms_::
<document ids="document-title" names="document title">
<title>
Document Title
<docinfo>
<date>
2002-08-20
See `\<docinfo>`_ for a more complete example,
including processing context.
<decoration>
============
The <decoration> element is a container for `\<header>`_ and `\<footer>`_
elements and potential future extensions. These elements are used for
notes, time/datestamp, processing information, etc.
Details
-------
:Category: `Structural Subelements`_
:Analogues: There are no direct analogies to <decoration> in HTML or
in DocBook.
:Processing: See the individual `decorative elements`_.
:Parents: Only the `\<document>`_ element contains <decoration>.
:Children: <decoration> elements may contain the `decorative elements`_
`\<header>`_ and/or `\<footer>`_.
Although the content model doesn't specifically require
contents, no empty <decoration> elements are ever created.
:Attributes: The <decoration> element contains only the `common attributes`_.
Examples
--------
See `\<header>`_ and `\<footer>`_.
<definition>
============
The <definition> element is a container for the body elements
used to define a `\<term>`_ in a `\<definition_list>`_.
Details
-------
:Category: `Body Subelements`_ (compound)
:Analogues: <definition> is analogous to the HTML <dd> element
and to the DocBook_ <listitem> element
(inside a <variablelistentry> element).
:Processing: See `\<definition_list_item>`_.
:Parents: Only `\<definition_list_item>`_ elements contain <definition>.
:Children: <definition> elements contain `body elements`_.
:Attributes: The <definition> element contains only the `common attributes`_.
Examples
--------
See the examples for the `\<definition_list>`_,
`\<definition_list_item>`_, and `\<classifier>`_ elements.
<definition_list>
=================
The <definition_list> element contains a list of terms and their
definitions. It can be used for glossaries or dictionaries, to
describe or classify things, for dialogues, or to itemize subtopics
(such as in this reference).
Details
-------
:Category: `Compound Body Elements`_
:Analogues: <definition_list> is analogous to the HTML <dl> element
and to the DocBook_ <variablelist> element.
:Processing: See `\<definition_list_item>`_.
:Parents: All elements employing the `%body.elements;`_
or `%structure.model;`_ parameter entities in their
content models may contain <definition_list>.
:Children: <definition_list> elements contain one or more
`\<definition_list_item>`_ elements.
:Attributes: The <definition_list> element contains only the
`common attributes`_.
:Parameter Entities: The `%body.elements;`_ parameter entity
directly includes <definition_list>. The `%structure.model;`_
parameter entity indirectly includes <definition_list>.
Examples
--------
A reStructuredText `definition list`_. The classifier is optional. ::
Term
Definition.
Term : classifier
The ' : ' indicates a classifier in
definition list item terms only.
Pseudo-XML_ fragment from simple parsing::
<definition_list>
<definition_list_item>
<term>
Term
<definition>
<paragraph>
Definition.
<definition_list_item>
<term>
Term
<classifier>
classifier
<definition>
<paragraph>
The ' : ' indicates a classifier in
definition list item terms only.
See `\<definition_list_item>`_ and `\<classifier>`_ for further examples.
<definition_list_item>
======================
The <definition_list_item> element contains a single
`\<term>`_/`\<definition>`_ pair (with optional `\<classifier>`_).
Details
-------
:Category: `Body Subelements`_ (compound)
:Analogues: <definition_list_item> is analogous to the
DocBook_ <variablelistentry> element.
:Processing: The optional `\<classifier>`_ can be rendered differently
from the `\<term>`_. They should be separated visually,
typically by spaces plus a colon or dash.
:Parents: Only the `\<definition_list>`_ element contains
<definition_list_item>.
:Children: <definition_list_item> elements each contain
a single `\<term>`_, an optional `\<classifier>`_,
and a `\<definition>`_::
(term, classifier?, definition)
:Attributes: The <definition_list_item> element contains only the
`common attributes`_.
Examples
--------
A complex reStructuredText_ `definition list`_::
Tyrannosaurus Rex : carnivore
Big and scary; the "Tyrant King".
Brontosaurus : herbivore
..
All brontosauruses are thin at one end,
much much thicker in the middle
and then thin again at the far end.
-- Anne Elk (Miss)
Pseudo-XML_ fragment from simple parsing::
<definition_list>
<definition_list_item>
<term>
Tyrannosaurus Rex
<classifier>
carnivore
<definition>
<paragraph>
Big and scary; the "Tyrant King".
<definition_list_item>
<term>
Brontosaurus
<classifier>
herbivore
<definition>
<comment xml:space="preserve">
<block_quote>
<paragraph>
All brontosauruses are thin at one end,
much much thicker in the middle
and then thin again at the far end.
<attribution>
Anne Elk (Miss)
See `\<definition_list>`_ and `\<classifier>`_ for further examples.
<description>
=============
The <description> element contains body elements, describing the
purpose or effect of a command-line option or group of options.
Details
-------
:Category: `Body Subelements`_
:Analogues: <description> has no direct analogues in common DTDs.
:Processing: See `\<option_list>`_.
:Parents: Only the `\<option_list_item>`_ element contains <description>.
:Children: <description> elements may contain `body elements`_.
:Attributes: The <description> element contains only the `common attributes`_.
Examples
--------
See the examples for the `\<option_list>`_ element.
<docinfo>
=========
The <docinfo> element is a container for *displayed* document bibliographic
data, or meta-data (data about the document). It corresponds to the
front matter of a book, such as the title page and copyright page.
See also the `\<meta>`_ element (for hidden meta-data).
Details
-------
:Category: `Structural Subelements`_
:Analogues: <docinfo> is analogous to DocBook_ <info> elements.
There are no directly analogous HTML elements; the <meta>
element carries some of the same information, albeit invisibly.
:Processing: The <docinfo> element may be rendered as a two-column table or
in other styles. It may even be invisible or omitted from the
processed output. Meta-data may be extracted from <docinfo>
children; for example, HTML ``<meta>`` tags may be constructed.
When Docutils_ transforms a reStructuredText_ `\<field_list>`_
into a <docinfo> element (see the examples below), RCS/CVS
keywords are normally stripped from simple (one paragraph)
field bodies. For complete details, please see `RCS Keywords`_
in the `reStructuredText Markup Specification`_.
:Parents: Only the `\<document>`_ element contains <docinfo>.
:Children: <docinfo> elements contain `bibliographic elements`_.
:Attributes: The <docinfo> element contains only the `common attributes`_.
Examples
--------
`Bibliographic data`_ is represented in reStructuredText by a
`field list <rST field list_>`__ as the first visible element of a
`document <rST document_>`__ (after optional document title and subtitle).
The field list is transformed into a <docinfo> element and its children
by the `DocInfo transform`_. [#abstract-dedication]_
Source::
Docinfo Example
===============
:Author: J. Random Hacker
:Contact: jrh@example.com
:Date: 2002-08-18
:Status: Work In Progress
:Version: 1
:Filename: $RCSfile$
:Copyright: This document has been placed in the public domain.
Complete pseudo-XML_ result after parsing and applying transforms_::
<document ids="docinfo-example" names="docinfo example">
<title>
Docinfo Example
<docinfo>
<author>
J. Random Hacker
<contact>
<reference refuri="mailto:jrh@example.com">
jrh@example.com
<date>
2002-08-18
<status>
Work In Progress
<version>
1
<field classes="filename">
<field_name>
Filename
<field_body>
<paragraph>
doctree.txt
<copyright>
This document has been placed in the public domain.
Note that "Filename" is a non-standard <docinfo> field, so becomes a
generic ``field`` element. Also note that the "RCSfile" keyword
syntax has been stripped from the "Filename" data.
See `\<field_list>`_ for an example in a non-bibliographic context. Also
see the individual examples for the various `bibliographic elements`_.
.. [#abstract-dedication] Exceptions are the fields "abstract" and
"dedication" that are transformed to `\<topic>`_ elements adjacent to
the <docinfo>.
<doctest_block>
===============
The <doctest_block> element is a Python-specific variant of
`\<literal_block>`_. It is a block of text where line breaks and
whitespace are significant and must be preserved.
<doctest_block> elements are used for interactive Python interpreter
sessions, which are distinguished by their input prompt: ``>>>``.
They are meant to illustrate usage by example, and provide an elegant
and powerful testing environment via the `doctest module`_ in the
Python standard library.
.. _doctest module: https://docs.python.org/3/library/doctest.html
Details
-------
:Category: `Simple Body Elements`_
:Analogues: <doctest_block> is analogous to the HTML <pre> element
and to the DocBook_ <programlisting> and <screen> elements.
:Processing: As with `\<literal_block>`_, <doctest_block> elements are
typically rendered in a monospaced typeface. It is crucial
that all whitespace and line breaks are preserved in the
rendered form.
:Parents: All elements employing the `%body.elements;`_ or
`%structure.model;`_ parameter entities in their content models
may contain <doctest_block>.
:Children: <doctest_block> elements may contain text data
plus `inline elements`_ (`%text.model;`_):
:Attributes: The <doctest_block> element contains the `common attributes`_
plus `xml:space`_.
:Parameter Entities: The `%body.elements;`_ parameter entity
directly includes <doctest_block>. The `%structure.model;`_
parameter entity indirectly includes <doctest_block>.
Examples
--------
A reStructuredText `doctest block`_::
This is an ordinary paragraph.
>>> print('this is a Doctest block')
this is a Doctest block
Pseudo-XML_ fragment from simple parsing::
<paragraph>
This is an ordinary paragraph.
<doctest_block xml:space="preserve">
>>> print('this is a Doctest block')
this is a Doctest block
<document>
==========
The <document> element is the root (topmost) element of the Docutils
document tree. <document> is the direct or indirect ancestor of
every other element in the tree. It encloses the entire document
tree. It is the starting point for a document.
Details
-------
:Category: `Structural Elements`_
:Analogues: <document> is analogous to the HTML <html> element and to
several DocBook_ elements such as <book>.
:Parents: The <document> element has no parents.
:Children: <document> elements may contain `structural subelements`_,
`structural elements`_, and `body elements`_
.. parsed-literal::
( (title, subtitle?)?,
decoration?,
(docinfo, transition?)?,
`%structure.model;`_ )
Depending on the source of the data and the stage of
processing, the "document" may not initially contain a
"title". A document title is not directly representable in
reStructuredText_. Instead, a lone top-level section may
have its title promoted to become the document `\<title>`_,
and similarly for a lone second-level (sub)section's title
to become the document `\<subtitle>`_.
The contents of "`\<decoration>`_" may be specified in
a document, constructed programmatically, or both.
The "`\<docinfo>`_" may be transformed from an initial
`\<field_list>`_.
See the `%structure.model;`_ parameter entity for details of
the body of a <document>.
:Attributes: The <document> element contains the `common attributes`_
plus an optional title_ attribute which stores the document
title metadata.
Examples
--------
A minimal reStructuredText_ document with title::
A Title
=======
A paragraph.
Complete pseudo-XML_ result from simple parsing::
<document>
<section ids="a-title" names="a title">
<title>
A Title
<paragraph>
A paragraph.
After applying transforms_, the section title is promoted to become the
document title::
<document ids="a-title" names="a title">
<title>
A Title
<paragraph>
A paragraph.
<emphasis>
==========
`To be completed`_.
<entry>
=======
`To be completed`_.
<enumerated_list>
=================
The <enumerated_list> element contains `\<list_item>`_ elements which are
uniformly marked with enumerator labels.
Details
-------
:Category: `Compound Body Elements`_
:Analogues: <enumerated_list> is analogous to the HTML <ol> element
and to the DocBook_ <orderedlist> element.
:Processing: Each list item should begin a new vertical block, prefaced
by a enumeration marker (such as "1.").
:Parents: All elements employing the `%body.elements;`_ or
`%structure.model;`_ parameter entities in their content models
may contain <enumerated_list>.
:Children: <enumerated_list> elements contain one or more
`\<list_item>`_ elements.
:Attributes: The <enumerated_list> element contains the `common attributes`_
plus enumtype_, prefix_, suffix_, and start_.
``enumtype`` is used to record the intended
enumeration sequence, one of
"arabic" (1, 2, 3, ...),
"loweralpha" (a, b, c, ..., z),
"upperalpha" (A, B, C, ..., Z),
"lowerroman" (i, ii, iii, iv, ..., mmmmcmxcix [4999]),
or "upperroman" (I, II, III, IV, ..., MMMMCMXCIX [4999]).
``prefix`` stores the formatting characters used before the
enumerator. In documents originating from reStructuredText_
data, it will contain either "" (empty string) or "(" (left
parenthesis). It may or may not affect processing.
``suffix`` stores the formatting characters used after the
enumerator. In documents originating from reStructuredText_
data, it will contain either "." (period) or ")" (right
parenthesis). Depending on the capabilities of the output
format, this attribute may or may not affect processing.
``start`` contains the ordinal value of the first item in
the list, in decimal. For lists beginning at value 1
("1", "a", "A", "i", or "I"), this attribute may be omitted.
:Parameter Entities: The `%body.elements;`_ parameter entity directly includes
<enumerated_list>. The `%structure.model;`_ parameter entity
indirectly includes <enumerated_list>.
Examples
--------
A reStructuredText `enumerated list`_::
1. Item 1.
(A) Item A.
(B) Item B.
(C) Item C.
2. Item 2.
Pseudo-XML_ fragment from simple parsing::
<enumerated_list enumtype="arabic" prefix="" suffix=".">
<list_item>
<paragraph>
Item 1.
<enumerated_list enumtype="upperalpha" prefix="(" suffix=")">
<list_item>
<paragraph>
Item A.
<list_item>
<paragraph>
Item B.
<list_item>
<paragraph>
Item C.
<list_item>
<paragraph>
Item 2.
See `\<list_item>`_ for another example.
<error>
=======
The <error> element is an *admonition*, a distinctive and
self-contained notice. See also the generic `\<admonition>`_
and the other specific admonition elements `\<attention>`_,
`\<caution>`_, `\<danger>`_, `\<hint>`_, `\<important>`_,
`\<note>`_, `\<tip>`_, and `\<warning>`_.
Details
-------
:Category: `Compound Body Elements`_
:Analogues: <error> has no direct analogues in common DTDs.
It can be emulated with primitives and type effects.
:Processing: Rendered distinctly (inset and/or in a box, etc.),
with the generated title "Error" (or similar).
:Parents: All elements employing the `%body.elements;`_ or
`%structure.model;`_ parameter entities in their content models
may contain <error>.
:Children: <error> elements contain one or more `body elements`_.
:Attributes: The <error> element contains only the `common attributes`_.
:Parameter Entities: The `%body.elements;`_ parameter entity directly includes
<error>. The `%structure.model;`_ parameter entity indirectly
includes <error>.
Examples
--------
A reStructuredText `"error" directive`_::
.. Error:: Does not compute.
Pseudo-XML_ fragment from simple parsing::
<error>
<paragraph>
Does not compute.
<field>
=======
The <field> element contains a pair of `\<field_name>`_ and
`\<field_body>`_ elements.
Details
-------
:Category: `Body Subelements`_
:Analogues: <field> has no direct analogues in common DTDs.
HTML5 uses <div> elements inside <dl> lists for
grouping <dt>/<dd> pairs.
:Processing: See `\<field_list>`_.
:Parents: The following elements may contain <field>:
`\<docinfo>`_, `\<field_list>`_
:Children: Each <field> element contains one `\<field_name>`_ and one
`\<field_body>`_ element.
:Attributes: The <field> element contains only the `common attributes`_.
:Parameter Entities: The `%bibliographic.elements;`_ parameter entity
directly includes <field>.
Examples
--------
See the examples for the `\<field_list>`_ and `\<docinfo>`_ elements.
<field_body>
============
The <field_body> element contains body elements.
It is analogous to a database field's data.
Details
-------
:Category: `Body Subelements`_
:Analogues: <field_body> is analogous to the HTML <dd> element.
:Processing: See `\<field_list>`_.
:Parents: Only the `\<field>`_ element contains <field_body>.
:Children: <field_body> elements may contain `body elements`_.
:Attributes: The <field_body> element contains only the `common attributes`_.
Examples
--------
See the examples for the `\<field_list>`_ and `\<docinfo>`_ elements.
<field_list>
============
The <field_list> element contains two-column table-like structures
resembling database records (label & data pairs). Field lists are
often meant for further processing.
In reStructuredText_, field lists are used to represent bibliographic
fields (contents of the `\<docinfo>`_ element) and `directive`_ options.
Details
-------
:Category: `Compound Body Elements`_
:Analogues: <field_list> is analogue to the HTML <dl> element.
:Processing: A <field_list> is typically rendered as a two-column list,
where the first column contains "labels" (usually with a
colon suffix). However, field lists are often used for
extension syntax or special processing. Such structures do
not survive as field lists to be rendered.
:Parents: All elements employing the `%body.elements;`_ or
`%structure.model;`_ parameter entities in their
content models may contain <field_list>.
:Children: <field_list> elements contain one or more `\<field>`_ elements.
:Attributes: The <field_list> element contains only the `common attributes`_.
:Parameter Entities: The `%body.elements;`_ parameter entity
directly includes <field_list>. The `%structure.model;`_
parameter entity indirectly includes <field_list>.
Examples
--------
A reStructuredText `field list <rST field list_>`__::
:Author: Me
:Version: 1
:Date: 2001-08-11
:Parameter i: integer
Pseudo-XML_ fragment from simple parsing::
<field_list>
<field>
<field_name>
Author
<field_body>
<paragraph>
Me
<field>
<field_name>
Version
<field_body>
<paragraph>
1
<field>
<field_name>
Date
<field_body>
<paragraph>
2001-08-11
<field>
<field_name>
Parameter i
<field_body>
<paragraph>
integer
<field_name>
============
The <field_name> element contains text; it is analogous to a
database field's name.
Details
-------
:Category: `Body Subelements`_ (simple)
:Analogues: <field_name> is analogous to the HTML <dt> element.
:Processing: See `\<field_list>`_.
:Parents: Only the `\<field>`_ element contains <field_name>.
:Children: <field_name> elements may contain text data
plus `inline elements`_ (`%text.model;`_).
:Attributes: The <field_name> element contains only the `common attributes`_.
Examples
--------
See the examples for the `\<field_list>`_ and `\<docinfo>`_ elements.
<figure>
========
`To be completed`_.
<footer>
========
The <footer> element is a container element whose contents are meant
to appear at the bottom of a web page, or repeated at the bottom of
every printed page.
The <footer> element may contain processing information (datestamp, a
link to Docutils_, etc.) as well as custom content.
Details
-------
:Category: `Decorative Elements`_
:Analogues: <footer> is analogous to the HTML5 <footer> element. There
are no direct analogies to <footer> in HTML4 or DocBook.
Equivalents are typically constructed from primitives and/or
generated by the processing system.
:Parents: Only the `\<decoration>`_ element contains <footer>.
:Children: <footer> elements may contain `body elements`_.
:Attributes: The <footer> element contains only the `common attributes`_.
Examples
--------
A document may get a <footer> decoration even without use of the
reStructuredText `"footer" directive`_::
A paragraph.
Complete pseudo-XML_ result after parsing and applying transforms_,
assuming that the datestamp_ command-line option or configuration
setting has been supplied::
<document>
<decoration>
<footer>
<paragraph>
Generated on: 2002-08-20.
<paragraph>
A paragraph.
<footnote>
==========
The <footnote> element is used for labelled notes_ that provide
additional context to a passage of text (*footnotes* or *endnotes*).
The corresponding footnote mark in running text is set by the
`\<footnote_reference>`_ element.
.. _notes: https://en.wikipedia.org/wiki/Note_(typography)
Details
-------
:Category: `Compound Body Elements`_
:Analogues: <footnote> has no direct analogues in DocBook or HTML.
The `DocBook \<footnote>`_ element combines features of
<footnote> and `\<footnote_reference>`_.
The DPub ARIA role `"doc-footnote"`__ may be used to mark a
(conforming__) `HTML emulation`__ as "ancillary information,
such as a citation or commentary, that provides additional
context to a referenced passage of text".
For collections of notes that occur at the end of a section,
the the DPub ARIA role `"doc-endnotes"`__ is more appropriate.
The corresponding types in the `EPUB 3 Structural Semantics
Vocabulary`__ are "footnote" and "endnote".
__ https://www.w3.org/TR/dpub-aria-1.0/#doc-footnote
__ https://www.w3.org/TR/html-aria/#docconformance
__ https://www.w3.org/TR/html51/
common-idioms-without-dedicated-elements.html#footnotes
__ https://www.w3.org/TR/dpub-aria-1.0/#doc-endnotes
__ https://www.w3.org/TR/epub-ssv-11/#notes
:Processing: A <footnote> element should be set off from the rest of the
document, e.g. with a border or using a smaller font size.
Footnotes may "float" to the bottom or margin of a page or a
dedicated section.
:Parents: All elements employing the `%body.elements;`_ or
`%structure.model;`_ parameter entities in their content models
may contain <footnote>.
:Children: <footnote> elements begin with an optional `\<label>`_
and contain `body elements`_. ::
(label?, (%body.elements;)+)
:Attributes: The <footnote> element contains the `common attributes`_
plus auto_ and backrefs_.
:Parameter Entities: The `%body.elements;`_ parameter entity
directly includes <footnote>. The `%structure.model;`_
parameter entity indirectly includes <footnote>.
Examples
--------
reStructuredText uses `explicit markup blocks`_ for `footnotes`_::
.. [1] This is a footnote.
Pseudo-XML_ fragment from simple parsing::
<footnote ids="id1" names="1">
<label>
1
<paragraph>
This is a footnote.
<footnote_reference>
====================
The <footnote_reference> element is an inline element representing a
cross reference to a `\<footnote>`_ (a footnote mark).
Details
-------
:Category: `Inline Elements`_
:Analogues: The <footnote_reference> element resembles
the `DocBook \<footnoteref>`_ element or
the LaTeX ``\footnotemark`` command.
There is no equivalent in HTML. The <a> element can be used
to provide a link to the corresponding footnote.
:Processing: A <footnote_reference> should generate a mark matching the
`\<label>`_ of the referenced footnote. The mark is
typically formatted as superscript or enclosed i square
brackets.
:Parents: All elements employing the `%inline.elements;`_
parameter entities in their content models may contain
<footnote-reference>.
:Children: <footnote_reference> elements contain text data only.
:Attributes: The <footnote_reference> element contains the
`common attributes`_ plus auto_, refid_, and refname_.
Examples
--------
A reStructuredText `footnote reference`_ and footnote_::
[#]_ is an auto-numbered footnote reference.
.. [#] Auto-numbered footnote 1.
Pseudo-XML_ fragment from simple parsing::
<paragraph>
<footnote_reference auto="1" ids="id1">
is an auto-numbered footnote reference.
<footnote auto="1" ids="id3">
<paragraph>
Auto-numbered footnote 1.
The ``references.Footnotes`` Docutils transform_ resolves this to::
<paragraph>
<footnote_reference auto="1" ids="id1" refid="id2">
1
is an auto-numbered footnote reference.
<footnote auto="1" backrefs="id1" ids="id2" names="1">
<label>
1
<paragraph>
Auto-numbered footnote 1.
<generated>
===========
Docutils wraps <generated> elements around text that is inserted
(generated) by Docutils; i.e., text that was not in the document,
like section numbers inserted by the "sectnum" directive.
`To be completed`_.
<header>
========
The <header> element is a container element whose contents are meant
to appear at the top of a web page, or at the top of every printed
page.
Details
-------
:Category: `Decorative Elements`_
:Analogues: <header> is analogous to the HTML5 <header> element.
There are no direct analogies to <header> in HTML4 or DocBook.
Equivalents are typically constructed from primitives and/or
generated by the processing system.
:Parents: Only the `\<decoration>`_ element contains <header>.
:Children: <header> elements may contain `body elements`_.
:Attributes: The <header> element contains only the `common attributes`_.
Examples
--------
A reStructuredText `"header" directive`_::
.. header:: This space for rent.
Pseudo-XML_ fragment from simple parsing::
<document>
<decoration>
<header>
<paragraph>
This space for rent.
<hint>
======
The <hint> element is an *admonition*, a distinctive and
self-contained notice. See also the generic `\<admonition>`_
and the other specific admonition elements `\<attention>`_,
`\<caution>`_, `\<danger>`_, `\<error>`_, `\<important>`_,
`\<note>`_, `\<tip>`_, and `\<warning>`_.
Details
-------
:Category: `Compound Body Elements`_
:Analogues: <hint> has no direct analogues in common DTDs.
It can be emulated with primitives and type effects.
:Processing: Rendered distinctly (inset and/or in a box, etc.),
with the generated title "Hint" (or similar).
:Parents: All elements employing the `%body.elements;`_ or
`%structure.model;`_ parameter entities in their
content models may contain <hint>.
:Children: <hint> elements contain one or more `body elements`_.
:Attributes: The <hint> element contains only the `common attributes`_.
:Parameter Entities: The `%body.elements;`_ parameter entity
directly includes <hint>. The `%structure.model;`_
parameter entity indirectly includes <hint>.
Examples
--------
A reStructuredText `"hint" directive`_::
.. Hint:: It's bigger than a bread box.
Pseudo-XML_ fragment from simple parsing::
<hint>
<paragraph>
It's bigger than a bread box.
<image>
=======
The <image> element refers to an image resource that should be included
in the document.
It is up to the author to ensure compatibility of the image data format
with the output format or user agent (LaTeX engine, HTML browser, ...).
The `reStructuredText Directives` documentation contains a non exhaustive
`table of compatible image formats`_.
Details
-------
:Category: `Simple Body Elements`_, `Inline Elements`_
:Analogues: <image> is analogous to the `HTML \<img>`_,
`DocBook \<imagedata>`_, and `SVG \<image>`_ elements.
:Processing: The specified image is included into the output document.
Depending on the output format, this is done by referring to
the image URI or by embedding the image files content.
:Parents: All elements employing the `%body.elements;`_,
`%inline.elements;`_, or `%structure.model;`_ parameter entities
in their content models may contain <image>.
:Children: The <image> element has no content.
:Attributes: The <image> element contains the `common attributes`_ plus
uri_, alt_, align_, height_, width_, scale_, and loading_.
:Parameter Entities:
The `%body.elements;`_ and `%inline.elements;`_ parameter
entities directly include <image>. The `%structure.model;`_
parameter entity indirectly includes <image>.
Examples
--------
A reStructuredText `"image" directive`_::
.. image:: picture.jpeg
:width: 20 mm
:alt: alternate text
Pseudo-XML_ fragment from simple parsing::
<image alt="alternate text" uri="picture.jpeg" width="20mm">
.. _HTML <img>: https://html.spec.whatwg.org/multipage/embedded-content.html
#the-img-element
.. _SVG <image>: https://svgwg.org/svg2-draft/embedded.html#ImageElement
<important>
===========
The <important> element is an *admonition*, a distinctive and
self-contained notice. See also the generic `\<admonition>`_
and the other specific admonition elements `\<attention>`_,
`\<caution>`_, `\<danger>`_, `\<error>`_, `\<hint>`_,
`\<note>`_, `\<tip>`_, and `\<warning>`_.
Details
-------
:Category: `Compound Body Elements`_
:Analogues: <important> is analogous to the `DocBook \<important>`_ element.
:Processing: Rendered distinctly (inset and/or in a box, etc.),
with the generated title "Important" (or similar).
:Parents: All elements employing the `%body.elements;`_ or
`%structure.model;`_ parameter entities in their
content models may contain <important>.
:Children: <important> elements contain one or more `body elements`_.
:Attributes: The <important> element contains only the `common attributes`_.
:Parameter Entities: The `%body.elements;`_ parameter entity
directly includes <important>. The `%structure.model;`_
parameter entity indirectly includes <important>.
Examples
--------
A reStructuredText `"important" directive`_::
.. Important::
* Wash behind your ears.
* Clean up your room.
* Back up your data.
Pseudo-XML_ fragment from simple parsing::
<important>
<bullet_list>
<list_item>
<paragraph>
Wash behind your ears.
<list_item>
<paragraph>
Clean up your room.
<list_item>
<paragraph>
Back up your data.
<inline>
========
The <inline> element is a generic inline container.
Details
-------
:Category: `Inline Elements`_
:Analogues: <inline> is analogous to the HTML <span> element.
:Processing: Writers_ typically pass the classes_ attribute to the output
document and leave styling to the backend or a custom
stylesheet_. They may also process the classes_ attribute
and convert the <inline> element to a specific element or
render the content distinctly for specific class values.
Moreover, writers may ignore the classes attribute and
render the content as ordinary text.
:Parents: All elements employing the `%inline.elements;`_ parameter
entities in their content models may contain <inline>.
:Children: <inline> elements may contain text data
plus `inline elements`_ (`%text.model;`_).
:Attributes: The <inline> element contains only the `common attributes`_.
Examples
--------
`Custom interpreted text roles`_ create <inline> elements
(unless they are based on a `standard role`_).
This reStructuredText source fragment creates and uses a custom role::
.. role:: custom
An example of using :custom:`interpreted text`
Pseudo-XML_ fragment from simple parsing::
<paragraph>
An example of using
<inline classes="custom">
interpreted text
<label>
=======
`To be completed`_.
<legend>
========
`To be completed`_.
<line>
======
The <line> element contains a single line of text,
part of a `\<line_block>`_.
Details
-------
:Category: `Body Subelements`_ (simple)
:Analogues: <line> has no direct analogues in common DTDs.
It can be emulated with primitives or type effects.
:Processing: See `\<line_block>`_.
:Parents: Only the `\<line_block>`_ element contains <line>.
:Children: <line> elements may contain text data plus `inline elements`_.
:Attributes: The <line> element contains only the `common attributes`_.
Examples
--------
See `\<line_block>`_.
<line_block>
============
The <line_block> element contains a sequence of lines and nested line
blocks. Line breaks (implied between elements) and leading whitespace
(indicated by nesting) is significant and must be preserved.
<line_block> elements are commonly used for verse and addresses.
See `\<literal_block>`_ for an alternative useful for
program listings and interactive computer sessions.
Details
-------
:Category: `Compound Body Elements`_
:Analogues: <line_block> is analogous to the DocBook_ <literallayout>
element and to the HTML <pre> element (with modifications to
typeface styles).
:Processing: Unlike <literal_block>, <line_block> elements are
typically rendered in an ordinary text typeface.
It is crucial that leading whitespace and line breaks
are preserved in the rendered form.
:Parents: All elements employing the `%body.elements;`_ or
`%structure.model;`_ parameter entities in their content models
may contain <line_block>.
:Children: <line_block> elements may contain `\<line>`_ elements and
nested <line_block> elements. ::
(line | line_block)+
:Attributes: The <line_block> element contains only the `common attributes`_.
:Parameter Entities: The `%body.elements;`_ parameter entity
directly includes <line_block>. The `%structure.model;`_
parameter entity indirectly includes <line_block>.
Examples
--------
A reStructuredText `line block`_::
Take it away, Eric the Orchestra Leader!
| A one, two, a one two three four
|
| Half a bee, philosophically,
| must, *ipso facto*, half not be.
| But half the bee has got to be,
| *vis a vis* its entity. D'you see?
|
| But can a bee be said to be
| or not to be an entire bee,
| when half the bee is not a bee,
| due to some ancient injury?
|
| Singing...
Pseudo-XML_ fragment from simple parsing::
<paragraph>
Take it away, Eric the Orchestra Leader!
<line_block>
<line>
A one, two, a one two three four
<line>
<line>
Half a bee, philosophically,
<line_block>
<line>
must,
<emphasis>
ipso facto
, half not be.
<line>
But half the bee has got to be,
<line_block>
<line>
<emphasis>
vis a vis
its entity. D'you see?
<line>
<line>
But can a bee be said to be
<line_block>
<line>
or not to be an entire bee,
<line_block>
<line>
when half the bee is not a bee,
<line_block>
<line>
due to some ancient injury?
<line>
<line>
Singing...
<list_item>
===========
The <list_item> element is a container for the elements of a list
item.
Details
-------
:Category: `Body Subelements`_ (compound)
:Analogues: <list_item> is analogous to the HTML <li> element
and to the DocBook_ <listitem> element.
:Processing: See `\<bullet_list>`_ or `\<enumerated_list>`_.
:Parents: The `\<bullet_list>`_ and `\<enumerated_list>`_ elements
contain <list_item>.
:Children: <list_item> elements may contain `body elements`_.
:Attributes: The <list_item> element contains only the `common attributes`_.
Examples
--------
A reStructuredText `enumerated list`_ with a nested `bullet list`_::
1. Outer list, item 1.
* Inner list, item 1.
* Inner list, item 2.
2. Outer list, item 2.
Pseudo-XML_ fragment from simple parsing::
<enumerated_list enumtype="arabic" prefix="" suffix=".">
<list_item>
<paragraph>
Outer list, item 1.
<bullet_list bullet="*">
<list_item>
<paragraph>
Inner list, item 1.
<list_item>
<paragraph>
Inner list, item 2.
<list_item>
<paragraph>
Outer list, item 2.
See `\<bullet_list>`_ or `\<enumerated_list>`_ for further examples.
<literal>
=========
`To be completed`_.
<literal_block>
===============
The <literal_block> element contains a block of text where line
breaks and whitespace are significant and must be preserved.
<literal_block> elements are commonly used for program listings and
interactive computer sessions.
See `\<line_block>`_ for an alternative useful for verse and addresses.
Details
-------
:Category: `Simple Body Elements`_
:Analogues: <literal_block> is analogous to the HTML <pre> element
and to the DocBook_ <programlisting> and <screen> elements.
:Processing: <literal_block> elements are typically rendered in a
monospaced typeface. It is crucial that all whitespace and
line breaks are preserved in the rendered form.
:Parents: All elements employing the `%body.elements;`_ or
`%structure.model;`_ parameter entities in their content models
may contain <literal_block>.
:Children: <literal_block> elements may contain text data
plus `inline elements`_ (`%text.model;`_).
:Attributes: The <literal_block> element contains the `common attributes`_
plus `xml:space`_.
:Parameter Entities: The `%body.elements;`_ parameter entity
directly includes <literal_block>. The `%structure.model;`_
parameter entity indirectly includes <literal_block>.
Examples
--------
A reStructuredText `"parsed-literal" directive`_::
.. parsed-literal::
if parsed_literal:
text = 'is parsed for reStructuredText_ markup'
spaces_and_linebreaks = 'are preserved'
markup_processing = **True**
Pseudo-XML_ fragment from simple parsing::
<literal_block xml:space="preserve">
if parsed_literal:
text = 'is parsed for
<reference name="reStructuredText" refid="restructuredtext">
reStructuredText
markup'
spaces_and_linebreaks = 'are preserved'
markup_processing =
<strong>
True
<literal-block> elements are also generated by a `literal block`_ and
the `"code" directive`_.
<math>
======
The <math> element contains text in `LaTeX math format` [#latex-math]_
that is typeset as mathematical notation (inline formula).
Details
-------
:Category: `Inline Elements`_
:Analogues: <math> is analogous to a HTML/MathML <math> element or
the LaTeX (``$ math $``) mode.
:Processing: Rendered as mathematical notation.
If the output format does not support math typesetting,
the content may be inserted verbatim.
:Parents: All elements employing the `%inline.elements;`_
parameter entities in their content models may contain <math>.
:Children: <math> elements contain text data only.
:Attributes: The <math> element contains only the `common attributes`_.
Example
-------
reStructuredText source::
Euler's identity is the equality :math:`e^{i\pi + 1 = 0`.
Pseudo-XML_ fragment from simple parsing::
<paragraph>
Euler’s identity is the equality
<math>
e^{\mathrm{i}\pi + 1 = 0
.
.. [#latex-math] For details of the supported mathematical language, see
the `"math" directive`_
<math_block>
============
The <math_block> element contains a block of text in `LaTeX math format`
[#latex-math]_ that is typeset as mathematical notation (display formula).
Details
-------
:Category: `Simple Body Elements`_
:Analogues: <math_block> is analogous to a HTML/MathML <math> element
displayed as block-level element or a LaTeX ``equation*``
environment.
:Processing: Rendered in a block as mathematical notation, typically
centered or with indentation
If the output format does not support math typesetting,
the content may be inserted verbatim.
:Parents: All elements employing the `%body.elements;`_ or
`%structure.model;`_ parameter entities in their content models
may contain <math_block>.
:Children: <math_block> elements contain text data only.
:Attributes: The <math_block> element contains the `common attributes`_
plus `xml:space`_.
Example
-------
The reStructuredText `"math" directive`_ generates a <math_block> element::
Euler's identity is the equality
.. math:: e^{i\pi + 1 = 0
Pseudo-XML_ fragment from simple parsing::
<paragraph>
Euler’s identity is the equality
<math_block xml:space="preserve">
e^{i\pi + 1 = 0
<meta>
======
The <meta> element is a container for "hidden" document
bibliographic data, or meta-data (data about the document).
It corresponds to the HTML <meta> element.
See also the `\<docinfo>`_ element for displayed meta-data.
The document's title_ attribute stores the metadata document title.
Details
-------
:Category: `Structural Subelements`_
:Analogues: <meta> is analogous to the `HTML <meta> element`_
or the file properties in ODT or PDF documents.
:Processing: The <meta> element is stored as metadata if the export
format supports this. It is typically invisible and may be
omitted from the processed output.
Meta-data may also be extracted from `\<docinfo>`_ children
or the `\<document>`_ attributes (title).
:Parents: Only the `\<document>`_ element contains <meta>.
:Children: The <meta> element has no content.
:Attributes: The <meta> element contains the attributes *name*,
*content*, *http-equiv*, *lang*, *dir*, *media*, and
*scheme* that correspond to the respective attributes
of the `HTML <meta> element`_.
Example
-------
A reStructuredText `"meta" directive`_::
.. meta::
:description lang=en: An amusing story
:description lang=fr: Un histoire amusant
Pseudo-XML_ fragment from simple parsing::
<meta content="An amusing story" lang="en" name="description">
<meta content="Un histoire amusant" lang="fr" name="description">
.. _HTML <meta> element:
https://html.spec.whatwg.org/multipage/semantics.html#the-meta-element
<note>
======
The <note> element is an *admonition*, a distinctive and
self-contained notice. See also the generic `\<admonition>`_
and the other specific admonition elements `\<attention>`_,
`\<caution>`_, `\<danger>`_, `\<error>`_, `\<hint>`_,
`\<important>`_, `\<tip>`_, and `\<warning>`_.
Details
-------
:Category: `Compound Body Elements`_
:Analogues: <note> is analogous to the `DocBook \<note>`_ element.
:Processing: Rendered distinctly (inset and/or in a box, etc.),
with the generated title "Note" (or similar).
:Parents: All elements employing the `%body.elements;`_ or
`%structure.model;`_ parameter entities in their content models
may contain <note>.
:Children: <note> elements contain one or more `body elements`_.
:Attributes: The <note> element contains only the `common attributes`_.
:Parameter Entities: The `%body.elements;`_ parameter entity
directly includes <note>. The `%structure.model;`_
parameter entity indirectly includes <note>.
Examples
--------
A reStructuredText `"note" directive`_::
.. Note:: Admonitions can be handy to break up a
long boring technical document.
Pseudo-XML_ fragment from simple parsing::
<note>
<paragraph>
Admonitions can be handy to break up a
long boring technical document.
<option>
========
The <option> element groups an option string together with zero or
more option argument placeholders. Note that reStructuredText_
currently supports only one argument per option.
Details
-------
:Category: `Body Subelements`_
:Analogues: <option> has no direct analogues in common DTDs.
:Processing: See `\<option_list>`_.
:Parents: Only the `\<option_group>`_ element contains <option>.
:Children: Each <option> element contains one `\<option_string>`_ and
zero or more `\<option_argument>`_ elements.
:Attributes: The <option> element contains only the `common attributes`_.
Examples
--------
See the examples for the `\<option_list>`_ element.
<option_argument>
=================
The <option_argument> element contains placeholder text for option
arguments.
Details
-------
:Category: `Body Subelements`_
:Analogues: <option_argument> has no direct analogues in common DTDs.
:Processing: The value of the "delimiter" attribute is prefixed to the
<option_argument>, separating it from its
`\<option_string>`_ or a preceding <option_argument>.
The <option_argument> text is typically rendered in a
monospaced typeface, possibly italicized or otherwise
altered to indicate its placeholder nature.
:Parents: Only the `\<option>`_ element contains <option_argument>.
:Children: <option_argument> elements contain text data only.
:Attributes: The <option_argument> element contains
the `common attributes`_ plus delimiter_.
Examples
--------
See the examples for the `\<option_list>`_ element.
<option_group>
==============
The <option_group> element groups together one or more `\<option>`_
elements, all synonyms.
Details
-------
:Category: `Body Subelements`_
:Analogues: <option_group> has no direct analogues in common DTDs.
:Processing: Typically `\<option>`_ elements within an <option_group> are
joined together in a comma-separated list.
:Parents: Only the `\<option_list_item>`_ element contains <option_group>.
:Children: <option_group> elements contain one or more `\<option>`_
elements.
:Attributes: The <option_group> element contains only the `common attributes`_.
Examples
--------
See the examples for the `\<option_list>`_ element.
<option_list>
=============
Each <option_list> element contains a two-column list of command-line
options and descriptions, documenting a program's options.
Details
-------
:Category: `Compound Body Elements`_
:Analogues: <option_list> has no direct analogues in common DTDs.
It can be emulated with primitives such as tables.
:Processing: An <option_list> is typically rendered as a two-column list,
where the first column contains option strings and
arguments, and the second column contains descriptions.
:Parents: All elements employing the `%body.elements;`_ or
`%structure.model;`_ parameter entities in their
content models may contain <option_list>.
:Children: <option_list> elements contain one or more `\<option_list_item>`_
elements.
:Attributes: The <option_list> element contains only the `common attributes`_.
:Parameter Entities: The `%body.elements;`_ parameter entity
directly includes <option_list>. The `%structure.model;`_
parameter entity indirectly includes <option_list>.
Examples
--------
A reStructuredText `option list`_::
-a command-line option "a"
-1 file, --one=file, --two file
Multiple options with arguments.
Pseudo-XML_ fragment from simple parsing::
<option_list>
<option_list_item>
<option_group>
<option>
<option_string>
-a
<description>
<paragraph>
command-line option "a"
<option_list_item>
<option_group>
<option>
<option_string>
-1
<option_argument delimiter=" ">
file
<option>
<option_string>
--one
<option_argument delimiter="=">
file
<option>
<option_string>
--two
<option_argument delimiter=" ">
file
<description>
<paragraph>
Multiple options with arguments.
<option_list_item>
==================
The <option_list_item> element is a container for a pair of
`\<option_group>`_ and `\<description>`_ elements.
Details
-------
:Category: `Body Subelements`_
:Analogues: <option_list_item> has no direct analogues in common DTDs.
:Processing: See `\<option_list>`_.
:Parents: Only the `\<option_list>`_ element contains <option_list_item>.
:Children: Each <option_list_item> element contains one `\<option_group>`_
and one `\<description>`_ element.
:Attributes: The <option_list_item> element contains only the
`common attributes`_.
Examples
--------
See the examples for the `\<option_list>`_ element.
<option_string>
===============
The <option_string> element contains the text of a command-line option.
Details
-------
:Category: `Body Subelements`_
:Analogues: <option_string> has no direct analogues in common DTDs.
:Processing: The <option_string> text is typically rendered in a
monospaced typeface.
:Parents: Only the `\<option>`_ element contains <option_string>.
:Children: <option_string> elements contain text data only.
:Attributes: The <option_string> element contains only the
`common attributes`_.
Examples
--------
See the examples for the `\<option_list>`_ element.
<organization>
==============
The <organization> element contains the name of document author's
organization, or the organization responsible for the document.
Details
-------
:Category: `Bibliographic Elements`_
:Analogues: <organization> is analogous to the DocBook_ <orgname>,
<corpname>, or <publishername> elements.
:Processing: See `\<docinfo>`_.
:Parents: Only the `\<docinfo>`_ element contains <organization>.
:Children: <organization> elements may contain text data
plus `inline elements`_ (`%text.model;`_).
:Attributes: The <organization> element contains only the
`common attributes`_.
:Parameter Entities: The `%bibliographic.elements;`_ parameter entity
directly includes <organization>.
Examples
--------
In reStructuredText, "organization" is one of the registered
`bibliographic fields`_::
Document Title
==============
:Organization: Humankind
Complete pseudo-XML_ result after parsing and applying transforms_::
<document ids="document-title" names="document title">
<title>
Document Title
<docinfo>
<organization>
Humankind
See `\<docinfo>`_ for a more complete example, including processing
context.
<paragraph>
===========
The <paragraph> element contains the text and inline elements of a
single paragraph, a fundamental building block of documents.
Details
-------
:Category: `Simple Body Elements`_
:Analogues: <paragraph> is analogous to the HTML <p> element
and to the DocBook_ <para> elements.
:Parents: All elements employing the `%body.elements;`_ or
`%structure.model;`_ parameter entities in their content models
may contain <paragraph>.
:Children: <paragraph> elements may contain text data
plus `inline elements`_ (`%text.model;`_).
:Attributes: The <paragraph> element contains only the `common attributes`_.
:Parameter Entities: The `%body.elements;`_ parameter entity
directly includes <paragraph>. The `%structure.model;`_
parameter entity indirectly includes <paragraph>.
Examples
--------
In reStructuredText_, blocks of left-aligned text are paragraphs unless
marked up as another body element::
A paragraph must be
left-aligned.
Pseudo-XML_ fragment from simple parsing::
<paragraph>
A paragraph must be
left-aligned.
<pending>
=========
`To be completed`_.
<problematic>
=============
`To be completed`_.
<raw>
=====
The <raw> element contains non-reStructuredText data that is to be passed
untouched to the Writer.
Details
-------
:Category: `Simple Body Elements`_, `Inline Elements`_
:Analogues: The <raw> element has no direct analogues in common DTDs.
:Processing: Passed untouched to the Writer_.
The interpretation is up to the Writer.
A Writer may ignore <raw> elements not matching its format_.
:Parents: All elements employing the `%body.elements;`_,
`%inline.elements;`_, or `%structure.model;`_ parameter entities
in their content models may contain <raw>.
:Children: <raw> elements contain text data only.
:Attributes: The <raw> element contains the `common attributes`_
plus format_ and `xml:space`_.
:Parameter Entities:
The `%body.elements;`_ and `%inline.elements;`_ parameter
entities directly include <raw>. The `%structure.model;`_
parameter entity indirectly includes <raw>.
Examples
--------
The reStructuredText `"raw" directive`_ [#]_ creates a <raw> element::
.. raw:: html
<hr width=50 size=10>
Pseudo-XML_ fragment from simple parsing::
<raw format="html" xml:space="preserve">
<hr width=50 size=10>
.. [#] For raw data pass-through in inline context, use `custom
interpreted text roles`_ derived from the `"raw" role`_.
<reference>
===========
`To be completed`_.
<revision>
==========
The <revision> element contains the revision number of the document.
It can be used alone or in conjunction with `\<version>`_.
Details
-------
:Category: `Bibliographic Elements`_
:Analogues: <revision> is analogous to but simpler than the DocBook_
<revision> element. It closely matches the DocBook
<revnumber> element, but in a simpler context.
:Processing: Often used with the RCS/CVS keyword "Revision".
See `\<docinfo>`_.
:Parents: Only the `\<docinfo>`_ element contains <revision>.
:Children: <revision> elements may contain text data
plus `inline elements`_ (`%text.model;`_).
:Attributes: The <revision> element contains only the `common attributes`_.
:Parameter Entities: The `%bibliographic.elements;`_ parameter entity
directly includes <revision>.
Examples
--------
In reStructuredText, "revision" is one of the registered
`bibliographic fields`_::
Document Title
==============
:Version: 1
:Revision: b
Complete pseudo-XML_ result after parsing and applying transforms_::
<document ids="document-title" names="document title">
<title>
Document Title
<docinfo>
<version>
1
<revision>
b
See `\<docinfo>`_ for a more complete example, including processing
context.
<row>
=====
`To be completed`_.
<rubric>
========
rubric n. 1. a title, heading, or the like, in a manuscript,
book, statute, etc., written or printed in red or otherwise
distinguished from the rest of the text. ...
-- Random House Webster's College Dictionary, 1991
A rubric is like an informal heading that doesn't correspond to the
document's structure.
`To be completed`_.
<section>
=========
The <section> element is the main unit of hierarchy for Docutils
documents. Docutils <section> elements are a recursive structure;
a <section> may contain other <section> elements, without limit.
Paragraphs and other body elements may occur before a <section>,
but not after it.
Details
-------
:Category: `Structural Elements`_
:Analogues: <section> is analogous to the recursive <section> elements
in DocBook_ and HTML.
:Parents: The following elements may contain <section>:
`\<document>`_, `\<section>`_
:Children: <section> elements begin with a `\<title>`_, and optional
`\<subtitle>`_. They may contain `body elements`_ as well as
`\<transition>`_, `\<topic>`_, and `\<sidebar>`_ elements::
(title, subtitle?, %structure.model;)
See the `%structure.model;`_ parameter entity for details of
the body of a <section>.
:Attributes: The <section> element contains only the `common attributes`_.
:Parameter Entities: The `%section.elements;`_ parameter entity
directly includes <section>. The `%structure.model;`_
parameter entity indirectly includes <section>.
Examples
--------
reStructuredText does not impose a fixed number and order of section_
title adornment styles. The order enforced will be the order as
encountered. ::
Title 1
=======
Paragraph 1.
Title 2
-------
Paragraph 2.
Title 3
=======
Paragraph 3.
Title 4
-------
Paragraph 4.
Complete pseudo-XML_ result after parsing::
<document>
<section ids="title-1" names="title 1">
<title>
Title 1
<paragraph>
Paragraph 1.
<section ids="title-2" names="title 2">
<title>
Title 2
<paragraph>
Paragraph 2.
<section ids="title-3" names="title 3">
<title>
Title 3
<paragraph>
Paragraph 3.
<section ids="title-4" names="title 4">
<title>
Title 4
<paragraph>
Paragraph 4.
<sidebar>
=========
Sidebars are like miniature, parallel documents that occur inside other
documents, providing related or reference material.
A <sidebar> is typically offset by a border and "floats" to the side of
the page; the document's main text may flow around it. Sidebars can also
be likened to super-footnotes; their content is outside of the flow of
the document's main text.
The <sidebar> element is a non-recursive `\<section>`_-like construct
which may occur at the top level of a `\<section>`_ wherever a body
element (list, table, etc.) is allowed. In other words, <sidebar>
elements cannot nest inside body elements, so you can't have a <sidebar>
inside a ``table`` or a ``list``, or inside another <sidebar> or
`\<topic>`_.
Details
-------
:Category: `Structural Elements`_
:Analogues: <sidebar> is analogous to the DocBook_ <sidebar> and
the HTML <aside> elements.
:Processing: A <sidebar> element should be set off from the rest of the
document somehow, typically with a border. Sidebars
typically "float" to the side of the page and the document's
main text flows around them.
:Parents: The following elements may contain <sidebar>:
`\<document>`_, `\<section>`_.
:Children: <sidebar> elements begin with optional
`\<title>`_ and `\<subtitle>`_ and contain
`body elements`_ and `\<topic>`_ elements.
There must not be a <subtitle> without title. ::
((title, subtitle?)?,
(%body.elements; | topic)+)
:Attributes: The <sidebar> element contains only the `common attributes`_.
:Parameter Entities: The `%structure.model;`_ parameter entity
directly includes <sidebar>.
Examples
--------
A reStructuredText `"sidebar" directive`_::
.. sidebar:: Optional Title
:subtitle: If Desired
Body.
Pseudo-XML_ fragment from simple parsing::
<sidebar>
<title>
Optional Title
<subtitle>
If Desired
<paragraph>
Body.
<status>
========
The <status> element contains a status statement for the document,
such as "Draft", "Final", "Work In Progress", etc.
Details
-------
:Category: `Bibliographic Elements`_
:Analogues: <status> is analogous to the DocBook_ <status> element.
:Processing: See `\<docinfo>`_.
:Parents: Only the `\<docinfo>`_ element contains <status>.
:Children: <status> elements may contain text data
plus `inline elements`_ (`%text.model;`_).
:Attributes: The <status> element contains only the `common attributes`_.
:Parameter Entities: The `%bibliographic.elements;`_ parameter entity
directly includes <status>.
Examples
--------
In reStructuredText, "status" is one of the registered
`bibliographic fields`_::
Document Title
==============
:Status: Work In Progress
Complete pseudo-XML_ result after parsing and applying transforms_::
<document ids="document-title" names="document title">
<title>
Document Title
<docinfo>
<status>
Work In Progress
See `\<docinfo>`_ for a more complete example, including processing
context.
<strong>
========
`To be completed`_.
<subscript>
===========
`To be completed`_.
<substitution_definition>
=========================
The <substitution_definition> element stores a
reStructuredText `substitution definition`_.
`To be completed`_.
<substitution_reference>
========================
`To be completed`_.
<subtitle>
==========
The <subtitle> element stores the subtitle of a `\<document>`_,
`\<section>`, or `\<sidebar>`.
Details
-------
:Category: `Structural Subelements`_
:Analogues: <subtitle> is analogous to the DocBook_ <subtitle> element.
In HTML, subtitles are represented by a <p> element inside
a <hgroup_> element.
:Processing: A document's subtitle is usually rendered smaller
than its `\<title>`_.
:Parents: The `\<document>`_, `\<section>`, and `\<sidebar>`_ elements
may contain <subtitle>.
:Children: <subtitle> elements may contain text data
plus `inline elements`_ (`%text.model;`_).
:Attributes: The <subtitle> element contains only the `common attributes`_.
Examples
--------
In reStructuredText, a lone second-level section title immediately after
the “document title” can become the document subtitle::
=======
Title
=======
----------
Subtitle
----------
A paragraph.
Complete pseudo-XML_ result after parsing and applying the
`DocTitle transform`_::
<document ids="title" names="title">
<title>
Title
<subtitle ids="subtitle" names="subtitle">
Subtitle
<paragraph>
A paragraph.
Note how two section levels have collapsed, promoting their titles to
become the document's title and subtitle. Since there is only one
structural element (document), the subsection's ``ids`` and ``names``
attributes are stored in the <subtitle> element.
.. _hgroup: https://html.spec.whatwg.org/multipage/sections.html
#the-hgroup-element
<superscript>
=============
`To be completed`_.
<system_message>
================
`To be completed`_.
<table>
=======
The <table> element identifies a data arrangement with rows and columns.
Docutils tables are based on the `Exchange subset of the CALS-table
model` [exchange-table-model]_. [#]_
.. [#] The interpretation of column widths in `\<colspec>`_ differs from the
specification.
Details
-------
:Category: `Compound Body Elements`_
:Analogues: <table> is analogous to the HTML <table> element and the
DocBook_ <table> and <informaltable> elements.
:Processing: Content is rendered in rows and columns.
:Parents: All elements employing the `%body.elements;`_ or
`%structure.model;`_ parameter entities in their
content models may contain <table>.
:Children: <table> elements begin with an optional `\<title>`_ (caption)
and may contain one or more `\<tgroup>`_ elements. ::
(title?, tgroup+)
:Attributes: The <table> element contains the `common attributes`_ plus
align_, and width_ as well as the attributes "frame", colsep_,
rowsep_, and "pgwide" defined in the exchange-table-model_.
:Parameter Entities: The `%body.elements;`_ parameter entity
directly includes <table>. The `%structure.model;`_
parameter entity indirectly includes <table>.
Examples
--------
In reStructuredText, tables can be specified via the
`"table" <"table" directive_>`__, `"csv-table"`_, or `"list-table"`_
directives or directly as `grid table`_ or `simple table`_, e.g. ::
======== ====
bread £2
butter £30
======== ====
Pseudo-XML_ fragment from simple parsing::
<table>
<tgroup cols="2">
<colspec colwidth="8">
<colspec colwidth="4">
<tbody>
<row>
<entry>
<paragraph>
bread
<entry>
<paragraph>
£2
<row>
<entry>
<paragraph>
butter
<entry>
<paragraph>
£30
.. [exchange-table-model] `XML Exchange Table Model DTD`, OASIS Technical
Memorandum 9901:1999, http://www.oasis-open.org/html/tm9901.html.
<target>
========
`To be completed`_.
<tbody>
=======
`To be completed`_.
<term>
======
The <term> element contains a word or phrase being defined in a
`\<definition_list>`_.
Details
-------
:Category: `Body Subelements`_ (simple)
:Analogues: <term> is analogous to the HTML <dt> element
and to the DocBook_ <term> element.
:Processing: See `\<definition_list_item>`_.
:Parents: Only the `\<definition_list_item>`_ element contains <term>.
:Children: <term> elements may contain text data
plus `inline elements`_ (`%text.model;`_).
:Attributes: The <term> element contains only the `common attributes`_.
Examples
--------
See the examples for the `\<definition_list>`_,
`\<definition_list_item>`_, and `\<classifier>`_ elements.
<tgroup>
========
See [exchange-table-model]_. ::
(colspec*, thead?, tbody)
`To be completed`_.
<thead>
=======
`To be completed`_.
<tip>
=====
The <tip> element is an *admonition*, a distinctive and self-contained notice.
See also the generic `\<admonition>`_ and the other specific admonition
elements `\<attention>`_, `\<caution>`_, `\<danger>`_,
`\<error>`_, `\<hint>`_, `\<note>`_, and `\<warning>`_.
Details
-------
:Category: `Compound Body Elements`_
:Analogues: <tip> is analogous to the `DocBook \<tip>`_ element.
:Processing: Rendered distinctly (inset and/or in a box, etc.),
with the generated title "Tip" (or similar).
:Parents: All elements employing the `%body.elements;`_ or
`%structure.model;`_ parameter entities in their content models
may contain <tip>.
:Children: <tip> elements contain one or more `body elements`_.
:Attributes: The <tip> element contains only the `common attributes`_.
:Parameter Entities: The `%body.elements;`_ parameter entity
directly includes <tip>. The `%structure.model;`_
parameter entity indirectly includes <tip>.
Examples
--------
A reStructuredText `"tip" directive`_::
.. Tip:: 15% if the service is good.
Pseudo-XML_ fragment from simple parsing::
<tip>
<paragraph>
15% if the service is good.
<title>
=======
The <title> element stores the title of a `\<document>`_ [#]_,
`\<section>`_, `\<sidebar>`_, `\<topic>`_, or generic
`\<admonition>`_.
.. [#] The title of a <document> may differ from its *metadata title*
stored in the `title attribute`_.
Details
-------
:Category: `Structural Subelements`_
:Analogues: <title> is analogous to HTML header elements (<h1> etc.)
and to the DocBook_ <title> element.
In contrast, the HTML <title> element corresponds to a
<document>'s `title attribute`_.
:Parents: The following elements may contain <title>:
`\<admonition>`_, `\<document>`_, `\<section>`_,
`\<sidebar>`_, `\<table>`_, `\<topic>`_.
:Children: <title> elements may contain text data
plus `inline elements`_ (`%text.model;`_).
:Attributes: The <title> element contains the `common attributes`_
plus refid_ (used as a backlink to a table of contents entry)
and auto_.
Examples
--------
Section_ titles are marked up with "underlines" below the title text (or
underlines and matching overlines)::
A Title
=======
A paragraph.
The next section's title
========================
Pseudo-XML_ fragment from simple parsing::
<section ids="a-title" names="a\ title">
<title>
A Title
<paragraph>
A paragraph.
<section ids="the-next-section-s-title" names="the\ next\ section's\ title">
<title>
The next section’s title
See also the examples for `\<admonition>`_, `\<document>`_,
`\<section>`_, `\<sidebar>`_, `\<subtitle>`_, `\<table>`_,
and `\<topic>`_.
<title_reference>
=================
`To be completed`_.
<topic>
=======
The <topic> element is a non-recursive <section>-like construct which may
occur at the top level of a `\<document>`_, `\<section>`_, or `\<sidebar>`_
wherever a body element (list, table, etc.) is allowed. In other words,
<topic> elements cannot nest inside body elements. You may use a
`\<rubric>`_ element to get an informal heading inside a <table>
or a <list>, or inside another <topic>.
Docutils uses the <topic> element also for a generated `table of contents`_,
and the "abstract" and "dedication" `bibliographic fields`_.
Details
-------
:Category: `Structural Elements`_
:Analogues: <topic> is analogous to the DocBook_ <simplesect> element.
:Processing: A <topic> element should be set off from the rest of the
document somehow, such as with indentation or a border.
:Parents: The following elements may contain <topic>:
`\<document>`_, `\<section>`_, `\<sidebar>`_
:Children: <topic> elements begin with a `\<title>`_ and may contain
`body elements`_::
(title?, (%body.elements;)+)
:Attributes: The <topic> element contains the `common attributes`_ plus
depth_ and local_.
:Parameter Entities: The `%structure.model;`_ parameter entity
directly includes <topic>.
Examples
--------
A reStructuredText `"topic" directive`_::
.. topic:: Title
Body.
Pseudo-XML_ fragment from simple parsing::
<topic>
<title>
Title
<paragraph>
Body.
<transition>
============
The <transition> element is commonly seen in novels and short
fiction, as a gap spanning one or more lines, with or without a type
ornament such as a row of asterisks.
Transitions separate body elements and sections, dividing a section into
untitled divisions. A transition may not begin or end a section [#]_ or
document, nor may two transitions be immediately adjacent.
See also `Doctree Representation of Transitions`__ in
`A Record of reStructuredText Syntax Alternatives`__.
.. [#] In reStructuredText markup, a transition may appear to fall at
the end of a section immediately before another section. A
transform recognizes this case and moves the transition so it
separates the sections.
__ ../dev/rst/alternatives.html#doctree-representation-of-transitions
__ ../dev/rst/alternatives.html
Details
-------
:Category: `Structural Subelements`_
:Analogues: <transition> is analogous to the HTML <hr> element.
:Processing: The <transition> element is typically rendered as vertical
whitespace (more than that separating paragraphs), with or
without a horizontal line or row of asterisks. In novels,
transitions are often represented as a row of three
well-spaced asterisks with vertical space above and below.
:Parents: The following elements may contain <transition>:
`\<document>`_, `\<section>`_
:Children: The <transition> element has no content.
:Attributes: The <transition> element contains only the `common attributes`_.
:Parameter Entities: The `%structure.model;`_ parameter entity
directly includes <transition>.
Examples
--------
A transition_ in the reStructuredText source::
Paragraph 1.
--------
Paragraph 2.
Complete pseudo-XML_ result after parsing::
<document>
<paragraph>
Paragraph 1.
<transition>
<paragraph>
Paragraph 2.
<version>
=========
The <version> element contains the version number of the document.
It can be used alone or in conjunction with `\<revision>`_.
Details
-------
:Category: `Bibliographic Elements`_
:Analogues: <version> may be considered analogous to the DocBook_
<revision>, <revnumber>, or <biblioid> elements.
:Processing: Sometimes used with the RCS/CVS keyword "Revision".
See `\<docinfo>`_ and `\<revision>`_.
:Parents: Only the `\<docinfo>`_ element contains <version>.
:Children: <version> elements may contain text data
plus `inline elements`_ (`%text.model;`_).
:Attributes: The <version> element contains only the `common attributes`_.
:Parameter Entities: The `%bibliographic.elements;`_ parameter entity
directly includes <version>.
Examples
--------
In reStructuredText, "version" is one of the registered
`bibliographic fields`_::
Document Title
==============
:Version: 1.1
Complete pseudo-XML_ result after parsing and applying transforms_::
<document ids="document-title" names="document title">
<title>
Document Title
<docinfo>
<version>
1.1
See `\<docinfo>`_ for a more complete example, including processing
context.
<warning>
=========
The <warning> element is an *admonition*, a distinctive and
self-contained notice. See also the generic `\<admonition>`_
and the other specific admonition elements `\<attention>`_,
`\<caution>`_, `\<danger>`_, `\<error>`_, `\<hint>`_,
`\<important>`_, `\<note>`_, and `\<tip>`_.
Details
-------
:Category: `Compound Body Elements`_
:Analogues: <warning> is analogous to the `DocBook \<warning>`_ element.
:Processing: Rendered distinctly (inset and/or in a box, etc.),
with the generated title "Warning" (or similar).
:Parents: All elements employing the `%body.elements;`_ or
`%structure.model;`_ parameter entities in their content models
may contain <warning>.
:Children: <warning> elements contain one or more `body elements`_.
:Attributes: The <warning> element contains only the `common attributes`_.
:Parameter Entities: The `%body.elements;`_ parameter entity
directly includes <warning>. The `%structure.model;`_
parameter entity indirectly includes <warning>.
Examples
--------
A reStructuredText `"warning" directive`_::
.. WARNING:: Reader discretion is strongly advised.
Pseudo-XML_ fragment from simple parsing::
<warning>
<paragraph>
Reader discretion is strongly advised.
---------------
Attribute Types
---------------
*Standard attribute types* are defined in the `attribute types
<XML attribute types_>`__ section of the `XML 1.0 specification`_.
_`CDATA`
Character data. CDATA attributes may contain arbitrary text.
_`NMTOKEN`
A "name token". One or more of letters, digits, ".", "-", and
"_".
_`NMTOKENS`
One or more space-separated NMTOKEN_ values.
_`EnumeratedType`
The attribute value may be one of a specified list of values.
.. _custom attribute types:
The Docutils DTD defines *custom attribute types* via `parameter entities
<parameter entity reference_>`__ that resolve to standard attribute types
to highlight specific attribute value constraints.
In the docutils.nodes_ reference implementation, values are stored using
the specified Python data types.
_`%classnames.type;`
| Space-separated list of `class names`_. Resolves to NMTOKEN_.
| Used in the `classes`_ attribute. Python data type: ``list[str]``.
_`%idref.type;`
| A reference to another element by its identifier_.
Resolves to NMTOKEN_. [#id-vc]_
| Used in the `refid`_ attribute. Python data type: ``str``.
.. _identifier: identifiers_
_`%idrefs.type;`
| Space separated list of references to other elements by their identifiers_.
Resolves to NMTOKENS_. [#id-vc]_
| Used in the `backrefs`_ attribute. Python data type: ``list[str]``.
_`%ids.type;`
| A space-separated list of unique `identifiers`_.
Resolves to NMTOKENS_. [#id-vc]_
| Used in the `ids`_ attribute. Python data type: ``list[str]``.
_`%measure;`
| A number which may be immediately followed by a unit or percent sign.
Resolves to CDATA_.
| Used in the `height`_ and `width`_ attributes. Python data type: ``str``.
_`%number;`
| The attribute value must be a positive interger. Resolves to NMTOKEN_.
| Used in the `level`_, `morecols`_, `scale`_, and `start`_ attributes.
Python data type: ``int``.
_`%refname.type;`
| A `reference name`_. Resolves to CDATA_.
| Used in the `refname`_ attribute. Python data type: ``str``.
_`%refnames.type;`
| Space-separated list of `reference names`_. Resolves to CDATA_.
| Used in the `names`_ and `dupnames`_ attributes.
Python data type: ``list[str]``.
Backslash escaping is used for space characters inside a `reference
name`.
_`%yesorno;`
| Boolean: False if zero ("0"), true for any other value.
Resolves to NMTOKEN_.
| Used in the `anonymous`_, `ltrim`_, `rtrim`_, and `stub`_ attributes.
Python data type: ``int``.
.. _XML 1.0 specification: https://www.w3.org/TR/REC-xml
.. _XML attribute types: https://www.w3.org/TR/REC-xml/#sec-attribute-types
.. _One ID per Element Type: https://www.w3.org/TR/REC-xml/#one-id-per-el
Names and identifiers
=====================
.. class:: description
_`Class names`
define sub-classes of existing elements.
Docutils employs the `identifier normalization`_ to ensure class names
conform to both, HTML4.1 and CSS1.0 `name` requirements (the regular
expression ``[a-z](-?[a-z0-9]+)*``).
In reStructuredText, custom class names can be specified using the
`"class" directive`_, a directive's `class option`_, or `custom
interpreted text roles`_.
Class names are used in the classes_ attribute (`%classnames.type;`_).
.. _reference name:
_`Reference names`
are identifiers assigned in the markup.
Reference names may consist of any text. Whitespace is normalized (adjacent
spaces, horizontal or vertical tabs, newlines, carriage returns, or
form feeds, are replaced by a single space).
In reStructuredText, `reference names <rST reference names_>`__
originate from `internal hyperlink targets`_, a directive's `name
option`_, or the element's title or content and are used for internal
cross-references.
Hyperlinks_, footnotes_, and citations_ all share the same namespace
for reference names. Comparison ignores case.
Substitutions_ use a distinct namespace. Comparison is case-sensitive
but forgiving.
Reference names are used in the name_, names_, refname_, and dupnames_
attributes (`%refname.type;`_ or `%refnames.type;`_).
_`Identifiers`
are used for cross references in generated documents.
Docutils employs the `identifier normalization`_ to comply with
restrictions in the supported output formats (HTML4.1__, HTML5__,
`polyglot HTML`__, LaTeX__, ODT__, manpage, XML__).
Identifiers cannot be specified directly in reStructuredText.
Docutils generates them from `reference names`_ or from the
auto_id_prefix_, prepending the id_prefix_ and appending numbers
for disambiguation if required.
Identifiers are used in the ids_, refid_, and backrefs_ attributes
(`%ids.type;`_, `%idref.type;`_, or `%idrefs.type;`_) [#id-vc]_.
.. [#id-vc] Docutils cannot use the ID, IDREF, and IDREFS standard types
because it does not adhere to the `One ID per Element Type`_ validity
constraint.
__ https://www.w3.org/TR/html401/types.html#type-name
__ https://www.w3.org/TR/html50/dom.html#the-id-attribute
__ https://www.w3.org/TR/html-polyglot/#id-attribute
__ https://tex.stackexchange.com/questions/18311/
what-are-the-valid-names-as-labels
__ https://help.libreoffice.org/6.3/en-US/text/swriter/01/04040000.html
?DbPAR=WRITER#bm_id4974211
__ `XML attribute types`_
-----------------
Common Attributes
-----------------
Through the `%basic.atts;`_ parameter entity, all elements support the
following attributes: ids_, names_ or dupnames_, source_, and classes_.
---------------------
Attribute Reference
---------------------
.. contents:: :local:
:depth: 1
``alt``
=======
Attribute type: `CDATA`_. Default value: none.
The ``alt`` attribute is used to store a text description in the
`\<image>`_ element.
``align``
=========
Attribute type: `CDATA`_. Default value: none (inherit).
The ``align`` attribute is used in the `\<figure>`_,
`\<image>`_, `\<table>`_, and `\<tgroup>`_ elements
(via the `%align-h.att;`_ and `%align-hv.att;`_ parameter entities).
``anonymous``
=============
Attribute type: `%yesorno;`_. Default value: none (implies no).
The ``anonymous`` attribute is used for unnamed hyperlinks in the
`\<target>`_ and `\<reference>`_ elements (via the `%anonymous.att;`_
parameter entity).
``auto``
========
Attribute type: `CDATA`_. Default value: none.
The ``auto`` attribute is used to indicate automatically-numbered
`\<footnote>`_, `\<footnote_reference>`_ and `\<title>`_ elements
(via the `%auto.att;`_ parameter entity).
``backrefs``
============
Attribute type: `%idrefs.type;`_. Default value: none.
The ``backrefs`` attribute contains a space-separated list of identifier_
references, used for backlinks from `\<footnote>`_, `\<citation>`_, and
`\<system_message>`_ elements (via the `%backrefs.att;`_ parameter entity).
``bullet``
==========
Attribute type: `CDATA`_. Default value: none.
The ``bullet`` attribute is used in the `\<bullet_list>`_ element to
record the style of bullet from the input data. In documents processed
from reStructuredText_, it contains one of "-", "+", or "*".
It may be ignored in processing.
``classes``
===========
Attribute type: `%classnames.type;`_. Default value: none.
The ``classes`` attribute is a space separated list containing zero or
more `class names`_.
The purpose of the attribute is to indicate an "is-a" variant relationship,
to allow an extensible way of defining sub-classes of existing elements.
It can be used to carry context forward between a Docutils Reader_ and
Writer_, when a custom structure is reduced to a standardized document
tree. One common use is in conjunction with stylesheets, to add
selection criteria. It should not be used to carry formatting
instructions or arbitrary content.
The ``classes`` attribute's contents should be ignorable. Writers that
are not familiar with the variant expressed should be able to ignore
the attribute.
``classes`` is one of the `common attributes`_, shared by all
Docutils elements.
.. _reader: ../peps/pep-0258.html#readers
.. _writer:
.. _writers: ../peps/pep-0258.html#writers
``cols``
=========
Attribute type: NMTOKEN_. Default value: none.
The ``cols`` attribute is used in the `\<tgroup>`_ element.
``colsep``
==========
Attribute type: `%yesorno;`_. Default value: none (implies no).
The ``colsep`` attribute is used in the `\<table>`_ and `\<tgroup>`_
elements.
``colwidth``
============
Attribute type: CDATA_. Default value: "1*" (`sic!`__)
Column width specification used in the `\<colspec>`_ element.
Defined in the exchange-table-model_.
Either proportional measure of the form number*, e.g., “5*” for 5 times
the proportion, or “*” (which is equivalent to “1*”); fixed measure,
e.g., 2pt for 2 point, 3pi for 3 pica.
The fixed unit values are case insensitive. The standard list of allowed
unit values is “pt” (points), “cm” (centimeters), “mm” (millimeters),
“pi” (picas), and “in” (inches). The default fixed unit should be
interpreted as “pt” if neither a proportion nor a fixed unit is
specified.
__
.. important::
Currently, Docutils only allows unitless integers in the ``colwidth``
attribute and interprets them as proportions.
``delimiter``
=============
Attribute type: `CDATA`_. Default value: none.
The ``delimiter`` attribute is used in the `\<option_argument>`_ element
and contains the text preceding the <option_argument>: either the text
separating it from the `\<option_string>`_ (typically either "=" or " ")
or the text between option arguments (typically either "," or " ").
``depth``
=========
Attribute type: `%number;`_. Default value: none.
The ``depth`` attribute may be used in a `\<topic>`_ element generated by
the `"contents" directive`_ to hold the value of the "depth" option.
``dupnames``
============
Attribute type: `%refnames.type;`_. Default value: none.
``dupnames`` is one of the `common attributes`_, shared by all
Docutils elements. It replaces the `names`_ attribute when there
has been a naming conflict.
``enumtype``
============
Attribute type: EnumeratedType_, one of "arabic", "loweralpha",
"upperalpha", "lowerroman", or "upperroman". Default value: none.
The ``enumtype`` attribute is used in the `\<enumerated_list>`_ element.
``format``
==========
Attribute type: NMTOKENS_. Default value: none.
The ``format`` attribute is a string containing one or more space
separated output format names.
The ``format`` attribute is used in the `\<raw>`_ element.
``height``
==========
Attribute type: `%measure;`_. Default value: none.
The ``height`` attribute is used in the `\<image>`_ element.
``ids``
=======
Attribute type: `%ids.type;`_. Default value: none.
The ``ids`` attribute is a space separated list containing one or more
unique `identifiers`_, typically assigned by the system.
``ids`` is one of the `common attributes`_, shared by all Docutils
elements.
.. TODO:
* Use 'id' for primary identifier key?
* Keep additional keys in `ids`
or in the preceding target elements?
``level``
=========
Attribute type: `%number;`_. Default value: none.
The ``level`` attribute is used in the `\<system_message>`_ element.
``line``
=========
Attribute type: `%number;`_. Default value: none.
The ``line`` attribute is used in the `\<system_message>`_ element.
``local``
=========
Attribute type: `%yesorno;`_. Default value: none.
The ``local`` attribute may be used in a `\<topic>` element generated by
the `"contents" directive`_ to hold the value of the "local" option.
``ltrim``
=========
Attribute type: `%yesorno;`_. Default value: none (implies no).
The ``ltrim`` attribute is used in the `\<substitution_definition>`_ element.
``loading``
===========
Attribute type: EnumeratedType_, one of "embed", "link", or "lazy".
Default value: none.
The ``loading`` attribute is used in the `\<image>`_ element to
indicate the preferred handling by the Docutils writer_. [#]_
The default depends on the writer and the image_loading_
configuration setting.
New in Docutils 0.21
.. [#] Currently only recognized by the HTML5 writer.
The ODF/ODT writer always embeds images in the
output document, XML and LaTeX writers link to the image.
The behaviour may change for the ODT and XML writers
(images cannot be embedded in a LaTeX source).
``morecols``
============
Attribute type: `%number;`_. Default value: none.
The ``morecols`` attribute is used in the `\<entry>`_ element.
``morerows``
============
Attribute type: `%number;`_. Default value: none.
The ``morerows`` attribute is used in the `\<entry>`_ element.
``name``
=========
Attribute type: `NMTOKEN`_ or `CDATA`_.
Default value: none.
The ``name`` attribute in the `\<meta>`_ element accepts `NMTOKEN`_ values.
The output format may limit valid values to a set of keywords
(EnumeratedType_).
The ``name`` attribute in the `\<reference>`_ element holds the
`reference name`_ of the referenced element. Whitespace is normalized
but case is preserved. The attribute will no longer be used with
<reference> elements in Docutils 1.0.
``names``
=========
Attribute type: `%refnames.type;`_. Default value: none.
The ``names`` attribute is a space-separated list containing
`reference names`_ of an element.
Spaces inside a name are backslash-escaped.
Each name in the list must be unique; if there are name conflicts (two or
more elements want to the same name), the contents will be transferred to
the `dupnames`_ attribute on the duplicate elements. An element may have
at most one of the ``names`` or ``dupnames`` attributes, but not both.
``names`` is one of the `common attributes`_, shared by all
Docutils elements.
``prefix``
==========
Attribute type: `CDATA`_. Default value: none.
The ``prefix`` attribute is used in the `\<enumerated_list>`_ element.
``refid``
=========
Attribute type: `%idref.type;`_. Default value: none.
The ``refid`` attribute contains a reference to another element via its
`identifier`_.
``refid`` is used by the `\<citation_reference>`_, `\<footnote_reference>`_,
`\<problematic>`_, `\<reference>`_, `\<target>`_, and `\<title>`_ elements
(via the `%refid.att;`_ and `%reference.atts;`_ parameter entities).
``refname``
===========
Attribute type: `%refname.type;`_. Default value: none.
The ``refname`` attribute contains a reference to one of the `names`_ of
another element.
``refname`` is used by the `\<citation_reference>`_, `\<footnote_reference>`_,
`\<reference>`_, `\<substitution_reference>`_, and `\<target>`_ elements. [#]_
On a `\<target>`_ element, ``refname`` indicates an `indirect target`_
which may resolve to either an internal or external reference.
Docutils transforms_ replace the ``refname`` attribute with a refid_
pointing to the same element.
.. [#] Via the `%refname.att;`_ and `%reference.atts;`_ parameter entities.
``refuri``
==========
Attribute type: `CDATA`_. Default value: none.
The ``refuri`` attribute contains an external reference to a URI/URL.
It is used by the `\<target>`_, `\<reference>`_,
`\<footnote_reference>`_, and `\<citation_reference>`_ elements
(via the `%reference.atts;`_ parameter entity).
``rowsep``
==========
Attribute type: `%yesorno;`_. Default value: none (implies no).
The ``rowsep`` attribute is used in the `\<table>`_ and `\<tgroup>`_
elements.
``rtrim``
=========
Attribute type: `%yesorno;`_. Default value: none (implies no).
The ``rtrim`` attribute is used in the `\<substitution_definition>`_ element.
``scale``
==========
Attribute type: `%number;`_. Default value: none.
The ``scale`` attribute is used in the `\<image>`_ element to store
a uniform scaling factor (integer percentage value).
``source``
==========
Attribute type: `CDATA`_. Default value: none.
The ``source`` attribute is used to store the path or URL to the
source text that was used to produce the document tree. It is one of
the `common attributes`_, declared for all Docutils elements.
``start``
=========
Attribute type: `%number;`_. Default value: none.
The ``start`` attribute is used in the `\<enumerated_list>`_ element.
``stub``
=========
Attribute type: `%yesorno;`_. Default value: none.
The ``stub`` attribute is used in the `\<colspec>`_ element.
It marks a table column containing *stubs* (row titles, on the left).
See also the `"csv-table"`_ and `"list-table"`_ directives.
``suffix``
==========
Attribute type: `CDATA`_. Default value: none.
The ``suffix`` attribute is used in the `\<enumerated_list>`_ element.
.. _title attribute:
``title``
=========
Attribute type: `CDATA`_. Default value: none.
The ``title`` attribute stores the *metadata title* of a `\<document>`_.
It is set by the `"title" directive`_ or the `DocTitle transform`_.
This title is typically not part of the rendered document.
It is, for example, used as `HTML <title> element`_ and shown in a
browser's title bar, in a user's history or bookmarks, or in search results.
.. _HTML <title> element:
https://html.spec.whatwg.org/multipage/semantics.html#the-title-element
``type``
=========
Attribute type: NMTOKEN_. Default value: none.
The ``type`` attribute is used in the `\<system_message>`_ element.
``uri``
=======
Attribute type: `CDATA`_. Default value: none.
The ``uri`` attribute is used in the `\<image>`_ and `\<figure>`_ elements
to refer to the image via its Universal Resource Indicator.
``width``
==========
Attribute type: `%measure;`_. Default value: none.
The ``width`` attribute is used in the `\<figure>`_, `\<image>`_,
and `\<table>`_ elements.
``xml:space``
=============
| Attribute type: `EnumeratedType`_, one of "default" or "preserve".
| Default value: "preserve" (fixed).
The ``xml:space`` attribute is a standard XML attribute for
whitespace-preserving elements. It is used by the `\<address>`_,
`\<comment>`_, `\<doctest_block>`_, `\<literal_block>`_, `\<math_block>`_,
and `\<raw>`_ elements (via the `%fixedspace.att;`_ parameter entity).
It is a fixed attribute, meant to communicate to an XML parser that the
element contains significant whitespace. The attribute value should not
be set in a document instance.
----------------------------
Parameter Entity Reference
----------------------------
`Parameter entities`_ are used to simplify the DTD (to share definitions
and reduce duplication) and to allow the DTD to be customized by
wrapper DTDs (external client DTDs that use or import the Docutils
DTD). Parameter entities may be overridden by wrapper DTDs, replacing
the definitions below with custom definitions. Empty placeholder entities
whose names begin with "additional" are provided to allow easy extension
by wrapper DTDs.
.. _parameter entities: https://www.w3.org/TR/REC-xml/#dt-PE
.. contents:: :local:
:depth: 1
In addition, the Docutils DTD defines parameter entities for
`custom attribute types`_.
``%align-h.att;``
=================
The ``%align-h.att;`` parameter entity contains the align_
attribute for horizontal alignment.
Entity definition::
align (left | center | right) #IMPLIED
The `\<figure>`_ and `\<table>`_ elements directly employ the
``%align-h.att;`` parameter entity in their attribute lists.
``%align-hv.att;``
==================
The ``%align-hv.att;`` parameter entity contains the align_
attribute for horizontal and vertical alignment.
Entity definition::
align (top | middle | bottom | left | center | right) #IMPLIED
The `\<image>`_ element directly employs the ``%align-hv.att;``
parameter entity in its attribute list.
``%anonymous.att;``
===================
The ``%anonymous.att;`` parameter entity contains the anonymous_
attribute, used for unnamed hyperlinks.
Entity definition::
anonymous %yesorno; #IMPLIED
The `\<reference>`_ and `\<target>`_ elements directly employ the
``%anonymous.att;`` parameter entity in their attribute lists.
``%auto.att;``
==============
The ``%auto.att;`` parameter entity contains the auto_ attribute, used
to indicate an automatically-numbered footnote or title.
Entity definition::
auto CDATA #IMPLIED
The `\<footnote>`_, `\<footnote_reference>`_, and `\<title>`_ elements
directly employ the ``%auto.att;`` parameter entity in their attribute
lists.
``%backrefs.att;``
==================
The ``%backrefs.att;`` parameter entity contains the backrefs_
attribute, a space-separated list of id references, for backlinks.
Entity definition::
backrefs %idrefs.type; #IMPLIED
The `\<citation>`_, `\<footnote>`_, and `\<system_message>`_ elements
directly employ the ``%backrefs.att;`` parameter entity in their
attribute lists.
``%basic.atts;``
================
The ``%basic.atts;`` parameter entity lists the `common attributes`_.
Entity definition:
.. parsed-literal::
ids_ NMTOKENS #IMPLIED
names_ CDATA #IMPLIED
dupnames_ CDATA #IMPLIED
source_ CDATA #IMPLIED
classes_ NMTOKENS #IMPLIED
%additional.basic.atts;
The ``%additional.basic.atts;`` parameter entity can be used by
wrapper DTDs to extend ``%basic.atts;``.
``%bibliographic.elements;``
============================
The ``%bibliographic.elements;`` parameter entity contains an OR-list of all
`bibliographic elements`_.
Entity definition::
author | authors | organization | contact | address
| version | revision | status | date | copyright | field
%additional.bibliographic.elements;
The ``%additional.bibliographic.elements;`` parameter entity can be used by
wrapper DTDs to extend ``%bibliographic.elements;``.
Only the `\<docinfo>`_ element directly employs the
``%bibliographic.elements;`` parameter entity in its content model.
``%body.elements;``
===================
The ``%body.elements;`` parameter entity contains an OR-list of all
`body elements`_. ``%body.elements;`` is itself contained within the
`%structure.model;`_ parameter entity.
Entity definition::
paragraph | compound | container | literal_block | doctest_block
| math_block | line_block | block_quote
| table | figure | image | footnote | citation | rubric
| bullet_list | enumerated_list | definition_list | field_list
| option_list
| attention | caution | danger | error | hint | important | note
| tip | warning | admonition
| reference | target | substitution_definition | comment | pending
| system_message | raw
%additional.body.elements;
The ``%additional.body.elements;`` parameter entity can be used by
wrapper DTDs to extend ``%body.elements;``.
The ``%body.elements;`` parameter entity is directly employed in the
content models of the following elements: `\<admonition>`_,
`\<attention>`_, `\<block_quote>`_, `\<caution>`_, `\<citation>`_,
`\<compound>`_, `\<danger>`_, `\<definition>`_, `\<description>`_,
`\<entry>`_, `\<error>`_, `\<field_body>`_, `\<footer>`_, `\<footnote>`_,
`\<header>`_, `\<hint>`_, `\<important>`_, `\<legend>`_, `\<list_item>`_,
`\<note>`_, `\<sidebar>`_, `\<system_message>`_, `\<tip>`_, `\<topic>`_,
and `\<warning>`_
Via `%structure.model;`_, the ``%body.elements;`` parameter entity is
indirectly employed in the content models of the `\<document>`_ and
`\<section>`_ elements.
``%fixedspace.att;``
====================
The ``%fixedspace.att;`` parameter entity contains the `xml:space`_
attribute, a standard XML attribute for whitespace-preserving
elements.
Entity definition::
xml:space (default | preserve) #FIXED 'preserve'
The ``%fixedspace.att;`` parameter entity is directly employed in the
attribute lists of the following elements: `\<address>`_, `\<comment>`_,
`\<doctest_block>`_, `\<literal_block>`_, `\<math_block>`_, `\<raw>`_.
``%inline.elements;``
=====================
The ``%inline.elements;`` parameter entity contains an OR-list of all
`inline elements`_.
Entity definition::
emphasis | strong | literal | math
| reference | footnote_reference | citation_reference
| substitution_reference | title_reference
| abbreviation | acronym | subscript | superscript
| inline | problematic | generated
| target | image | raw
%additional.inline.elements;
The ``%additional.inline.elements;`` parameter entity can be used by
wrapper DTDs to extend ``%inline.elements;``.
Via `%text.model;`_, the ``%inline.elements;`` parameter entity is
indirectly employed in the content models of the following elements:
`\<abbreviation>`_, `\<acronym>`_, `\<address>`_, `\<attribution>`_,
`\<author>`_, `\<caption>`_, `\<classifier>`_, `\<contact>`_,
`\<copyright>`_, `\<date>`_, `\<doctest_block>`_, `\<emphasis>`_,
`\<generated>`_, `\<inline>`_, `\<line_block>`_, `\<literal_block>`_,
`\<organization>`_, `\<paragraph>`_, `\<problematic>`_,
`\<reference>`_, `\<revision>`_, `\<rubric>`_,
`\<status>`_, `\<strong>`_, `\<subscript>`_, `\<substitution_definition>`_,
`\<substitution_reference>`_, `\<subtitle>`_, `\<superscript>`_,
`\<target>`_, `\<term>`_, `\<title>`_, `\<title_reference>`_, `\<version>`_
``%reference.atts;``
====================
The ``%reference.atts;`` parameter entity groups together the refuri_,
refid_, and refname_ attributes.
Entity definition:
.. parsed-literal::
`%refuri.att;`_
`%refid.att;`_
`%refname.att;`_
%additional.reference.atts;
The ``%additional.reference.atts;`` parameter entity can be used by
wrapper DTDs to extend ``%additional.reference.atts;``.
The `\<citation_reference>`_, `\<footnote_reference>`_, `\<reference>`_,
and `\<target>`_ elements directly employ the ``%reference.att;``
parameter entity in their attribute lists.
``%refid.att;``
================
The ``%refid.att;`` parameter entity contains the refid_ attribute, an
internal reference to the `ids`_ attribute of another element.
Entity definition::
refid %idref.type; #IMPLIED
The `\<title>`_ and `\<problematic>`_ elements directly employ the
``%refid.att;`` parameter entity in their attribute lists.
Via `%reference.atts;`_, the ``%refid.att;`` parameter entity is
indirectly employed in the attribute lists of the `\<citation_reference>`_,
`\<footnote_reference>`_, `\<reference>`_, and `\<target>`_ elements.
``%refname.att;``
=================
The ``%refname.att;`` parameter entity contains the refname_
attribute, an internal reference to the `names`_ attribute of another
element. On a `\<target>`_ element, ``refname`` indicates an indirect
target which may resolve to either an internal or external
reference.
Entity definition::
refname %refname.type; #IMPLIED
The `\<substitution_reference>`_ element directly employs the
``%refname.att;`` parameter entity in its attribute list.
Via `%reference.atts;`_, the ``%refname.att;`` parameter entity is
indirectly employed in the attribute lists of the `\<citation_reference>`_,
`\<footnote_reference>`_, `\<reference>`_, and `\<target>`_ elements.
``%refuri.att;``
================
The ``%refuri.att;`` parameter entity contains the refuri_ attribute,
an external reference to a URI/URL.
Entity definition::
refuri CDATA #IMPLIED
Via `%reference.atts;`_, the ``%refuri.att;`` parameter entity is
indirectly employed in the attribute lists of the `\<citation_reference>`_,
`\<footnote_reference>`_, `\<reference>`_, and `\<target>`_ elements.
``%section.elements;``
======================
The ``%section.elements;`` parameter entity contains an OR-list of all
`\<section>`_-equivalent elements. ``%section.elements;`` is itself
contained within the `%structure.model;`_ parameter entity.
Entity definition::
section
%additional.section.elements;
The ``%additional.section.elements;`` parameter entity can be used
by wrapper DTDs to extend ``%section.elements;``.
Via `%structure.model;`_, the ``%section.elements;`` parameter entity
is indirectly employed in the content models of the `\<document>`_ and
`\<section>`_ elements.
``%structure.model;``
=====================
The ``%structure.model;`` parameter entity encapsulates the
hierarchical structure of a document and of its constituent parts.
See the discussion of the `element hierarchy`_ above.
Entity definition:
.. parsed-literal::
( ( (`%body.elements;`_ | topic | sidebar)+, transition? )*,
( (`%section.elements;`_), (transition?, (`%section.elements;`_) )* )? )
Each `\<document>`_ or `\<section>`_ contains zero or more body elements,
topics, and/or sidebars, optionally interspersed with single
transitions, followed by zero or more sections (whose contents are
recursively the same as this model) optionally interspersed with
transitions.
The following restrictions are imposed by this model:
* Transitions must be separated by other elements (body elements,
sections, etc.). In other words, a transition may not be
immediately adjacent to another transition.
* A transition may not occur at the beginning of a document or
section.
.. The following is not the case with Docutils (since at least 2004)
(cf. test/functional/input/data/standard.txt)
An additional restriction, which cannot be expressed in the language
of DTDs, is imposed by software:
* A transition may not occur at the end of a document or section.
The ``%structure.model;`` parameter entity is directly employed in the
content models of the `\<document>`_ and `\<section>`_ elements.
``%text.model;``
================
The ``%text.model;`` parameter entity is used by many elements to
represent text data mixed with `inline elements`_.
Entity definition:
.. parsed-literal::
(#PCDATA | `%inline.elements;`_)*
The ``%text.model;`` parameter entity is directly employed in the content
models of the following elements: `\<abbreviation>`_,
`\<acronym>`_, `\<address>`_, `\<attribution>`_, `\<author>`_,
`\<caption>`_, `\<classifier>`_, `\<contact>`_, `\<copyright>`_,
`\<date>`_, `\<doctest_block>`_, `\<emphasis>`_, `\<field_name>`_,
`\<generated>`_, `\<inline>`_, `\<line>`_, `\<literal>`_, `\<literal_block>`_,
`\<organization>`_, `\<paragraph>`_, `\<problematic>`_,
`\<raw>`_, `\<reference>`_, `\<revision>`_, `\<rubric>`_,
`\<status>`_, `\<strong>`_, `\<subscript>`_, `\<substitution_definition>`_,
`\<substitution_reference>`_, `\<subtitle>`_, `\<superscript>`_,
`\<target>`_, `\<term>`_, `\<title>`_, `\<title_reference>`_, `\<version>`_
.. References
==========
.. _auto_id_prefix: ../user/config.html#auto-id-prefix
.. _datestamp: ../user/config.html#datestamp
.. _id_prefix: ../user/config.html#id-prefix
.. _image_loading: ../user/config.html#image-loading
.. _stylesheet: ../user/config.html#stylesheet
.. _transform:
.. _transforms: ../api/transforms.html
.. _DocInfo transform: ../api/transforms.html#docinfo
.. _DocTitle transform: ../api/transforms.html#frontmatter-doctitle
.. _reStructuredText Markup Specification: rst/restructuredtext.html
.. _bibliographic data:
.. _bibliographic fields: rst/restructuredtext.html#bibliographic-fields
.. _block quote: rst/restructuredtext.html#block-quotes
.. _bullet list: rst/restructuredtext.html#bullet-lists
.. _citations: rst/restructuredtext.html#citations
.. _definition list: rst/restructuredtext.html#definition-lists
.. _directive: rst/restructuredtext.html#directives
.. _doctest block: rst/restructuredtext.html#doctest-blocks
.. _enumerated list: rst/restructuredtext.html#enumerated-lists
.. _explicit markup blocks: rst/restructuredtext.html#explicit-markup-blocks
.. _footnote reference: rst/restructuredtext.html#footnote-references
.. _grid table: rst/restructuredtext.html#grid-tables
.. _indirect target: rst/restructuredtext.html#indirect-hyperlink-targets
.. _internal hyperlink targets:
rst/restructuredtext.html#internal-hyperlink-targets
.. _line block: rst/restructuredtext.html#line-blocks
.. _literal block: rst/restructuredtext.html#literal-blocks
.. _footnotes:
.. _footnote: rst/restructuredtext.html#footnotes
.. _hyperlinks: rst/restructuredtext.html#hyperlinks
.. _option list: rst/restructuredtext.html#option-lists
.. _RCS Keywords: rst/restructuredtext.html#rcs-keywords
.. _rST document: rst/restructuredtext.html#document
.. _rST field list: rst/restructuredtext.html#field-lists
.. _rST reference names: rst/restructuredtext.html#reference-names
.. _section: rst/restructuredtext.html#sections
.. _simple table: rst/restructuredtext.html#simple-tables
.. _substitution definition:
.. _substitutions: rst/restructuredtext.html#substitution-definitions
.. _transition: rst/restructuredtext.html#transitions
.. _standard role: rst/roles.html
.. _"raw" role: rst/roles.html#raw
.. _"admonition" directive: rst/directives.html#admonition
.. _"attention" directive: rst/directives.html#attention
.. _"caution" directive: rst/directives.html#caution
.. _"class" directive: rst/directives.html#class
.. _class option: rst/directives.html#class-option
.. _"code" directive: rst/directives.html#code
.. _"contents" directive:
.. _table of contents: rst/directives.html#table-of-contents
.. _"csv-table": rst/directives.html#csv-table
.. _"danger" directive: rst/directives.html#danger
.. _"error" directive: rst/directives.html#error
.. _"footer" directive: rst/directives.html#footer
.. _"header" directive: rst/directives.html#header
.. _"hint" directive: rst/directives.html#hint
.. _identifier normalization: rst/directives.html#identifier-normalization
.. _"image" directive: rst/directives.html#image
.. _"important" directive: rst/directives.html#important
.. _"list-table": rst/directives.html#list-table
.. _"math" directive: rst/directives.html#math
.. _"meta" directive: rst/directives.html#meta
.. _name option: rst/directives.html#name
.. _"note" directive: rst/directives.html#note
.. _"parsed-literal" directive: rst/directives.html#parsed-literal
.. _"raw" directive: rst/directives.html#raw
.. _"sidebar" directive: rst/directives.html#sidebar
.. _"table" directive: rst/directives.html#table
.. _"tip" directive: rst/directives.html#tip
.. _"topic" directive: rst/directives.html#topic
.. _"title" directive: rst/directives.html#title
.. _"warning" directive: rst/directives.html#admonition
.. _custom interpreted text roles:
rst/directives.html#custom-interpreted-text-roles
.. _table of compatible image formats: rst/directives.html#image-formats
..
Local Variables:
mode: indented-text
indent-tabs-mode: nil
sentence-end-double-space: t
fill-column: 70
End:
|