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
|
.. include:: ../header.txt
========================
Docutils Configuration
========================
:Author: David Goodger
:Contact: docutils-develop@lists.sourceforge.net
:Revision: $Revision: 9561 $
:Date: $Date: 2024-03-14 17:34:48 +0100 (Do, 14. Mär 2024) $
:Copyright: This document has been placed in the public domain.
.. sidebar:: Docutils Security for Web Applications
For a discussion about securing web applications, please see
`Deploying Docutils Securely <../howto/security.html>`_.
.. contents::
.. raw:: html
<style type="text/css"><!--
dl.field-list {--field-indent: 4.7em;}
--></style>
Introduction
============
Settings priority
-----------------
Configuration file settings override the built-in defaults, and
command-line options override all.
Some settings override also an associated setting; [#override]_
others append values from the various sources. [#append-values]_
For the technicalities, see `Docutils Runtime Settings`_.
Configuration Files
-------------------
Configuration files are used for persistent customization;
they can be set once and take effect every time you use a component,
e.g., via a `front-end tool`_.
By default, Docutils checks the following places for configuration
files, in the following order:
1. ``/etc/docutils.conf``: This is a system-wide configuration file,
applicable to all Docutils processing on the system.
2. ``./docutils.conf``: This is a project-specific configuration file,
located in the current directory.
The Docutils front end has to be executed from the directory
containing this configuration file for it to take effect (note that
this may have nothing to do with the location of the source files).
3. ``~/.docutils``: This is a user-specific configuration file,
located in the user's home directory.
If more than one configuration file is found, all will be read and
**later entries** will **override earlier ones**. [#append-values]_
For example, a "stylesheet" entry in a user-specific configuration file
will override a "stylesheet" entry in the system-wide file.
.. _DOCUTILSCONFIG:
The default implicit config file paths can be overridden by the
``DOCUTILSCONFIG`` environment variable. ``DOCUTILSCONFIG`` should
contain a colon-separated (semicolon-separated on Windows) sequence of
config file paths to search for; leave it empty to disable implicit
config files altogether. Tilde-expansion is performed on paths.
Paths are interpreted relative to the current working directory.
Empty path items are ignored.
.. |config| replace:: ``--config``
In addition, configuration files may be explicitly specified with the
|config|_ command-line option. These configuration files are read after
the three implicit ones listed above (or the ones defined by the
``DOCUTILSCONFIG`` environment variable), and its entries will have
priority.
Configuration File Syntax
-------------------------
Configuration files are UTF-8-encoded text files. The ConfigParser.py_
module from Python_'s standard library is used to read them.
From its documentation:
The configuration file consists of sections, lead by a "[section]"
header and followed by "name: value" entries, with continuations
in the style of `RFC 822`_; "name=value" is also accepted. Note
that leading whitespace is removed from values. ... Lines
beginning with "#" or ";" are ignored and may be used to provide
comments.
.. Note:: No format string interpolation is done.
The following conventions apply to Docutils configuration files:
* Configuration file **entry names** correspond to internal `runtime
settings`_. Underscores ("_") and hyphens ("-") can be used interchangeably
in entry names; hyphens are automatically converted to underscores.
Entries with non-applicable or misspelled entry names are silently ignored.
.. _boolean:
* For **boolean** settings (switches), the following values are
recognized (case-independent):
:True: "true", "yes", "on", "1"
:False: "false", "no", "off", "0", "" (no value)
.. _comma-separated:
* **Lists** are specified either comma- or _`colon-separated`:
*comma-separated*:
strip_classes_, strip_elements_with_classes_, smartquotes_locales_,
stylesheet_, stylesheet_dirs_, stylesheet_path_, use_bibtex_
Whitespace around list values is stripped, so you can write, e.g., ::
strip-classes: ham,eggs,
strip-elements-with-classes: sugar, salt, flour
stylesheet: html4css1.css,
math.css,
style sheet with spaces.css
*colon-separated*:
ignore_, prune_, sources_, expose_internals_
Whitespace around the delimiter is not stripped. Write, e.g., ::
expose_internals: source:line
Example
~~~~~~~
This is from the ``tools/docutils.conf`` configuration file supplied
with Docutils::
# These entries affect all processing:
[general]
source-link: yes
datestamp: %Y-%m-%d %H:%M UTC
generator: on
# These entries affect HTML output:
[html writers]
embed-stylesheet: no
[html4css1 writer]
stylesheet-path: docutils/writers/html4css1/html4css1.css
field-name-limit: 20
[html5 writer]
stylesheet-dirs: docutils/writers/html5_polyglot/
stylesheet-path: minimal.css, responsive.css
.. _configuration section:
.. _configuration sections:
Configuration File Sections & Entries
-------------------------------------
Below are the Docutils `runtime settings`_, listed by config file section.
Sections correspond to Docutils components (module name
or alias; section names are always in lowercase letters).
.. important:: Any setting may be specified in any section, but only
settings from "`active sections`_" will be used.
.. _active sections:
Each Docutils application_ uses a specific set of components;
`corresponding configuration file sections`__ are "active" when the
application is used.
Configuration sections are applied in general-to-specific order:
1. `[general]`_
2. `[parsers]`_, parser dependencies, and the section specific to the
Parser used ("[... parser]").
3. `[readers]`_, reader dependencies, and the section specific to the
Reader used ("[... reader]"). For example, `[pep reader]`_ depends
on `[standalone reader]`_.
4. `[writers]`_, writer family ("[... writers]"; if applicable),
writer dependencies, and the section specific to the writer used
("[... writer]"). For example, `[pep_html writer]`_ depends
on `[html writers]`_ and `[html4css1 writer]`_.
5. `[applications]`_, application dependencies, and the section
specific to the Application (`front-end tool`_) in use
("[... application]").
Since any setting may be specified in any section, this ordering
allows component- or application-specific overrides of earlier
settings. For example, there may be Reader-specific overrides of
general settings; Writer-specific overrides of Parser settings;
Application-specific overrides of Writer settings; and so on.
If multiple configuration files are applicable, the process is
completed (all sections are applied in the order given) for each one
before going on to the next. For example, a "[pep_html writer]
stylesheet" setting in an earlier configuration file would be
overridden by an "[html4css1 writer] stylesheet" setting in a later
file.
Individual configuration sections and settings are described
in the following sections.
Some knowledge of Python_ is assumed for some attributes.
.. _ConfigParser.py:
https://docs.python.org/3/library/configparser.html
.. _Python: https://www.python.org/
.. _RFC 822: https://www.rfc-editor.org/rfc/rfc822.txt
.. _front-end tool:
.. _front-end tools:
.. _application: tools.html
__ ../api/runtime-settings.html#active-sections
[general]
=========
Settings in the "[general]" section are always applied.
auto_id_prefix
--------------
Prefix prepended to all auto-generated `identifier keys` generated within
the document, after id_prefix_. Ensure the value conforms to the
restrictions on identifiers in the output format, as it is not subjected to
the `identifier normalization`_.
A trailing "%" is replaced with the tag name (new in Docutils 0.16).
:Default: "%" (changed in 0.18 from "id").
:Option: ``--auto-id-prefix`` (hidden, intended mainly for programmatic use).
.. _identifier normalization:
../ref/rst/directives.html#identifier-normalization
datestamp
---------
Include a time/datestamp in the document footer. Contains a
format string for Python's `time.strftime()`__.
Configuration file entry examples::
# Equivalent to --date command-line option, results in
# ISO 8601 extended format datestamp, e.g. "2001-12-21":
datestamp: %Y-%m-%d
# Equivalent to --time command-line option, results in
# date/timestamp like "2001-12-21 18:43 UTC":
datestamp: %Y-%m-%d %H:%M UTC
# Disables datestamp; equivalent to --no-datestamp:
datestamp:
:Default: None.
:Options: ``--date``, ``-d``, ``--time``, ``-t``, ``--no-datestamp``.
__ https://docs.python.org/3/library/time.html#time.strftime
debug
-----
Report debug-level system messages.
*Default*: None (disabled). *Options*: ``--debug``, ``--no-debug``.
dump_internals
--------------
At the end of processing, write all internal attributes of the
document (``document.__dict__``) to stderr.
*Default*: None (disabled).
*Option*: ``--dump-internals`` (hidden, for development use only).
dump_pseudo_xml
---------------
At the end of processing, write the pseudo-XML representation of
the document to stderr.
*Default*: None (disabled).
*Option*: ``--dump-pseudo-xml`` (hidden, for development use only).
dump_settings
-------------
At the end of processing, write all Docutils settings to stderr.
*Default*: None (disabled).
*Option*: ``--dump-settings`` (hidden, for development use only).
dump_transforms
---------------
At the end of processing, write a list of all transforms applied
to the document to stderr.
*Default*: None (disabled).
*Option*: ``--dump-transforms`` (hidden, for development use only).
error_encoding
--------------
The text encoding for error output.
:Default: The encoding reported by ``sys.stderr``, locale encoding, or "ascii".
:Options: ``--error-encoding``, ``-e``.
error_encoding_error_handler
----------------------------
The error handler for unencodable characters in error output.
Acceptable values are the `Error Handlers`_ of Python's "codecs" module.
See also output_encoding_error_handler_.
:Default: "backslashreplace"
:Options: ``--error-encoding-error-handler``, ``--error-encoding``, ``-e``.
exit_status_level
-----------------
A system message level threshold; non-halting system messages at
or above this level will produce a non-zero exit status at normal
exit. Exit status is the maximum system message level plus 10 (11
for INFO, etc.).
*Default*: 5 (disabled). *Option*: ``--exit-status``.
expose_internals
----------------
List of internal attributes (colon-separated_) to expose
as external attributes (with "internal:" namespace prefix).
Values are appended. [#append-values]_
*Default*: empty list.
*Option*: ``--expose-internal-attribute`` (hidden, for development use only).
footnote_backlinks
------------------
Enable backlinks from footnotes_ and citations_ to their references.
:Default: True.
:Options: ``--footnote-backlinks``, ``--no-footnote-backlinks``.
generator
---------
Include a "Generated by Docutils" credit and link in the document footer.
:Default: None (disabled).
:Options: ``--generator``, ``-g``, ``--no-generator``.
halt_level
----------
The threshold at or above which system messages are converted to
exceptions, halting execution immediately. If `traceback`_ is set, the
exception will propagate; otherwise, Docutils will exit.
See also report_level_.
*Default*: 4 (severe). *Options*: ``--halt``, ``--strict``.
id_prefix
---------
Prefix prepended to all identifier keys generated within the document.
Ensure the value conforms to the restrictions on identifiers in the output
format, as it is not subjected to the `identifier normalization`_.
See also auto_id_prefix_.
*Default*: "" (no prefix).
*Option*: ``--id-prefix`` (hidden, intended mainly for programmatic use).
input_encoding
--------------
The text encoding for input (use the empty string to restore the default).
*Default*: None (auto-detect_). [#]_
*Options*: ``--input-encoding``, ``-i``. [#i-o-options]_
.. [#] The default will change to "utf-8" in Docutils 0.22.
.. [#i-o-options] The short options ``-i`` and ``-o`` `will be removed`__
in Docutils 0.22.
.. _auto-detect: ../api/publisher.html#encodings
__ ../../RELEASE-NOTES.html#command-line-interface
input_encoding_error_handler
----------------------------
The error handler for undecodable characters in the input.
Acceptable values are the `Error Handlers`_ of Python's "codecs" module,
including:
strict
Raise an exception in case of an encoding error.
replace
Replace malformed data with the official Unicode replacement
character, U+FFFD.
ignore
Ignore malformed data and continue without further notice.
The error handler may also be appended to the input_encoding_
setting, delimited by a colon, e.g. ``--input-encoding=ascii:replace``.
*Default*: "strict".
*Options*: ``--input-encoding-error-handler``.
language_code
-------------
Case-insensitive `language tag`_ as defined in `BCP 47`_.
Sets the document language, also used for localized directive and
role names as well as Docutils-generated text.
A typical language identifier consists of a 2-letter language code
from `ISO 639`_ (3-letter codes can be used if no 2-letter code
exists). The language identifier can have an optional subtag,
typically for variations based on country (from `ISO 3166`_
2-letter country codes). Avoid subtags except where they add
useful distinguishing information. Examples of language tags
include "fr", "en-GB", "pt-br" (the same as "pt-BR"), and
"de-1901" (German with pre-1996 spelling).
The language of document parts can be specified with a
"language-<language tag>" `class attribute`_, e.g.
``.. class:: language-el-polyton`` for a quote in polytonic Greek.
*Default*: "en" (English). *Options*: ``--language``, ``-l``.
.. _class attribute: ../ref/doctree.html#classes
output
------
The path of the output destination.
An existing file will be overwritten without warning.
Use "-" for `stdout`.
Obsoletes the `\<destination>`_ positional argument
(cf. `Future changes`_ in the RELEASE-NOTES).
*Default*: None (stdout). *Option*: ``--output``.
New in Docutils 0.20.
.. _Future changes: ../../RELEASE-NOTES.html#future-changes
output_encoding
---------------
The text encoding for output.
The "output_encoding" setting may also affect the content of the output
(e.g. an encoding declaration in HTML or XML or the representation of
characters as LaTeX macro vs. literal character).
This setting is ignored by the `ODF/ODT Writer`_ which always usues UTF-8.
*Default*: "utf-8". *Options*: ``--output-encoding``, ``-o``. [#i-o-options]_
output_encoding_error_handler
-----------------------------
The error handler for unencodable characters in the output.
Acceptable values are the `Error Handlers`_ of Python's "codecs" module,
including:
strict
Raise an exception in case of an encoding error.
replace
Replace malformed data with a suitable replacement marker,
such as "?".
ignore
Ignore malformed data and continue without further notice.
xmlcharrefreplace
Replace with the appropriate XML character reference, such as
"``†``".
backslashreplace
Replace with backslash escape sequences, such as "``\u2020``".
The error handler may also be appended to the output_encoding_
setting using a colon as delimiter, e.g.
``--output-encoding=ascii:xmlcharrefreplace``.
*Default*: "strict".
*Options*: ``--output-encoding-error-handler``.
record_dependencies
-------------------
Path to a file where Docutils will write a list of files that
were required to generate the output, e.g. included files or embedded
stylesheets. [#dependencies]_ The format is one path per line with
forward slashes as separator, the encoding is UTF-8.
Set it to "-" in order to write dependencies to stdout.
This option is particularly useful in conjunction with programs like
``make`` using ``Makefile`` rules like::
ham.html: ham.txt $(shell cat hamdeps.txt)
rst2html --record-dependencies=hamdeps.txt ham.txt > ham.html
If the filesystem encoding differs from UTF-8, replace the ``cat``
command with a call to a converter, e.g.::
$(shell iconv -f utf-8 -t latin1 hamdeps.txt)
*Default*: None (disabled). *Option*: ``--record-dependencies``.
.. [#dependencies] Images are only added to the dependency list if they
are embedded into the output or the reStructuredText parser extracted
image dimensions from the file.
report_level
------------
Report system messages at or higher than <level>:
1 info
2 warning
3 error
4 severe
5 none
See also halt_level_.
:Default: 2 (warning).
:Options: ``--report``, ``-r``, ``--verbose``, ``-v``, ``--quiet``, ``-q``.
root_prefix
-----------
Base directory, prepended to a filesystem path__ starting with "/" when
including files with the `"include"`_, `"raw"`_, or `"csv-table"`_
directives.
Also applied when a writer converts an image URI__ to a local filesystem
path in order to determine the image size or embed the image in the output.
:Default: "/" (keep paths unchanged).
:Option: ``--root-prefix``
New in Docutils 0.21.
__ ../ref/rst/directives.html#path
__ ../ref/rst/directives.html#uri
sectnum_xform
-------------
Enable automatic section numbering by Docutils
(`docutils.transforms.parts.SectNum`) associated
with the `"sectnum" directive`_.
If disabled, section numbers might be added to the output by the
renderer (e.g. by LaTeX or via a CSS style definition).
:Default: True.
:Options: ``--section-numbering``, ``--no-section-numbering``.
source_link
-----------
Include a "View document source" link in the document footer. URL will
be relative to the destination.
:Default: None (disabled).
:Options: ``--source-link``, ``-s``, ``--no-source-link``.
source_url
----------
An explicit URL for a "View document source" link, used verbatim.
:Default: None (compute from source_link_).
:Options: ``--source-url``, ``--no-source-link``.
strict_visitor
--------------
When processing a document tree with the Visitor pattern, raise an
error if a writer does not support a node type listed as optional.
For transitional development use.
:Default: None (disabled).
:Option: ``--strict-visitor`` (hidden, for development use only).
strip_classes
-------------
List of "classes" attribute values (comma-separated_) that will be
removed from all elements in the document tree.
Values are appended. [#append-values]_
Allows eliding class values that interfere with, e.g, CSS rules from 3rd
party tools/frameworks.
.. WARNING:: Some standard class values are required in order to achieve
the expected output rendering; use with caution.
*Default*: empty list. *Option*: ``--strip-class``.
strip_comments
--------------
Enable or disable the removal of comment elements from the document tree.
:Default: None (disabled).
:Options: ``--strip-comments``, ``--leave-comments``.
strip_elements_with_classes
---------------------------
List of "classes" attribute values (comma-separated_).
Values are appended. [#append-values]_
Matching elements are removed from the document tree.
.. WARNING:: Potentially dangerous: may lead to an invalid document tree
and subsequent writer errors. Use with caution.
*Default*: empty list. *Option*: ``--strip-elements-with-class``.
title
-----
The `document title` as metadata which does not become part of the
document body. Stored as the document's `title attribute`_.
For example, in HTML output the metadata document title
appears in the title bar of the browser window.
This setting overrides a displayed `document title`_ and
is overridden by a `"title" directive`_.
:Default: None (the displayed `document title`_).
:Option: ``--title``.
.. _title attribute: ../ref/doctree.html#title-attribute
toc_backlinks
-------------
Enable backlinks from section titles to table of contents entries
("entry"), to the top of the ToC ("top"), or disable (False).
:Default: "entry".
:Options: ``--toc-entry-backlinks``, ``--toc-top-backlinks``,
``--no-toc-backlinks``.
traceback
---------
Enable or disable Python tracebacks when halt-level system messages and
other exceptions occur. Useful for debugging, and essential for issue
reports. Exceptions are allowed to propagate, instead of being
caught and reported (in a user-friendly way) by Docutils.
:Default: None (disabled). [#]_
:Options: ``--traceback``, ``--no-traceback``.
.. [#] unless Docutils is run programmatically
using the `Publisher Interface`_
.. _Publisher Interface: ../api/publisher.html
warning_stream
--------------
Path [#pwd]_ to a file for the output of system messages (warnings).
*Default*: None (stderr). *Option*: ``--warnings``.
[parsers]
=========
Generic parser options:
file_insertion_enabled
----------------------
Enable directives inserting the contents of external files,
such as `"include"`_ directive or the `"raw"`_ and `"csv-table"`_
directives with option "url" or "file".
A "warning" system message (including the directive text) is inserted
instead. (See also raw_enabled_ for another security-relevant setting.)
:Default: True.
:Options: ``--file-insertion-enabled``, ``--no-file-insertion``.
line_length_limit
-----------------
Maximal number of characters in an input line or `"substitution"`_
definition. To prevent extraordinary high processing times or memory
usage for certain input constructs, a "warning" system message is
inserted instead.
*Default*: 10 000.
*Option*: ``--line-length-limit``
New in Docutils 0.17.
raw_enabled
-----------
Enable the `"raw" directive`_. A "warning" system message
(including the directive text) is inserted instead. See also
file_insertion_enabled_ for another security-relevant setting.
*Default*: True. *Options*: ``--raw-enabled``, ``--no-raw``.
[restructuredtext parser]
-------------------------
character_level_inline_markup
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Relax the `inline markup recognition rules`_
requiring whitespace or punctuation around inline markup.
Allows character level inline markup without escaped whithespace and is
especially suited for languages that do not use whitespace to separate words
(e.g. Japanese, Chinese).
.. WARNING:: Potentially dangerous; use with caution.
When changing this setting to "True", inline markup characters in
URLs, names and formulas must be escaped to prevent recognition and
possible errors.
Examples:
.. class:: borderless
=========================== ====================================
``http://rST_for_all.html`` hyperlinks to ``rST_`` and ``for_``
``x_2, inline_markup`` hyperlinks to ``x_`` and ``inline_``
``2*x`` starts emphasised text
``a|b`` starts a substitution reference
=========================== ====================================
:Default: False.
:Options: ``--character-level-inline-markup``, ``--word-level-inline-markup``.
New in Docutils 0.13.
pep_references
~~~~~~~~~~~~~~
Recognize and link to standalone PEP references (like "PEP 258").
:Default: None (disabled); True in PEP Reader.
:Option: ``--pep-references``.
pep_base_url
~~~~~~~~~~~~
Base URL for PEP references.
*Default*: "https://peps.python.org/".
*Option*: ``--pep-base-url``.
pep_file_url_template
~~~~~~~~~~~~~~~~~~~~~
Template for PEP file part of URL, interpolated with the PEP
number and appended to pep_base_url_.
*Default*: "pep-%04d". *Option*: ``--pep-file-url``.
rfc_references
~~~~~~~~~~~~~~
Recognize and link to standalone RFC references (like "RFC 822").
:Default: None (disabled); True in PEP Reader.
:Option: ``--rfc-references``.
rfc_base_url
~~~~~~~~~~~~
Base URL for RFC references.
*Default*: "http://www.faqs.org/rfcs/". *Option*: ``--rfc-base-url``.
smart_quotes
~~~~~~~~~~~~
Activate the SmartQuotes_ transform to
change straight quotation marks to typographic form. `Quote characters`_
are selected according to the language of the current block element (see
language_code_, smartquotes_locales_, and the `pre-defined quote sets`_).
Also changes consecutive runs of hyphen-minus and full stops (``---``,
``--``, ``...``) to em-dash, en-dash, and ellipsis Unicode characters
respectively.
Supported values:
:boolean_: Use smart quotes?
:alt: Use alternative quote set (if defined for the language).
*Default*: None (disabled). *Option*: ``--smart-quotes``.
.. _SmartQuotes: smartquotes.html
.. _pre-defined quote sets: smartquotes.html#localization
.. _quote characters:
https://en.wikipedia.org/wiki/Non-English_usage_of_quotation_marks
smartquotes_locales
~~~~~~~~~~~~~~~~~~~
List with language tag and a string of four typographical quote
characters (primary open/close, secondary open/close) for use by
the SmartQuotes_ transform.
Values are appended. [#append-values]_
Example:
Ensure a correct leading apostrophe in ``'s Gravenhage`` in Dutch (at the
cost of incorrect opening single quotes) and set French quotes to double
and single guillemets with inner padding [#]_::
smartquote-locales: nl: „”’’,
fr: « : »:‹ : ›
:Default: SmartQuotes' `pre-defined quote sets`_.
:Option: ``--smartquotes-locales``.
New in Docutils 0.14.
.. [#] If more than one character per quote is required (e.g. padding in
French quotes), a colon-separated list may be used for the quote set.
syntax_highlight
~~~~~~~~~~~~~~~~
Token type names used by Pygments_ when parsing contents of the `"code"`_
directive and role.
Supported values:
:long: Use hierarchy of long token type names.
:short: Use short token type names.
(For use with `Pygments-generated stylesheets`_.)
:none: No code parsing. Use this to avoid the "Pygments not
found" warning when Pygments is not installed.
*Default*: "long". *Option*: ``--syntax-highlight``.
.. _Pygments: https://pygments.org/
.. _Pygments-generated stylesheets:
https://pygments.org/docs/cmdline/#generating-styles
tab_width
~~~~~~~~~
Number of spaces for `hard tab expansion`_.
*Default*: 8. *Option*: ``--tab-width``.
.. _hard tab expansion: ../ref/rst/restructuredtext.html#whitespace
trim_footnote_reference_space
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Remove spaces before `footnote references`_?
:Default: None (depends on the `footnote_references setting`_ [#]_).
:Options: ``--trim-footnote-reference-space``,
``--leave-footnote-reference-space``.
.. [#] The footnote space is trimmed if the reference style is "superscript",
and it is left if the reference style is "brackets".
.. _myst:
[myst parser]
-------------
Provided by the 3rd party package `myst-docutils`_.
See `MyST with Docutils`_ and MyST's `Sphinx configuration options`_
(some settings are not applicable with Docutils).
.. _myst-docutils: https://pypi.org/project/myst-docutils/
.. _MyST with Docutils:
https://myst-parser.readthedocs.io/en/latest/docutils.html
.. _Sphinx configuration options:
https://myst-parser.readthedocs.io/en/latest/sphinx/reference.html#sphinx-config-options
.. _pycmark:
[pycmark parser]
----------------
Provided by the 3rd party package `pycmark`__.
Currently no configuration settings.
__ https://pypi.org/project/pycmark/
.. _recommonmark:
[recommonmark parser]
---------------------
.. admonition:: Provisional
Depends on deprecated 3rd-party package recommonmark__.
Currently no configuration settings.
__ https://pypi.org/project/recommonmark/
[readers]
=========
[standalone reader]
-------------------
docinfo_xform
~~~~~~~~~~~~~
Enable the `bibliographic field list`_ transform
(docutils.transforms.frontmatter.DocInfo).
*Default*: True. *Options*: ``--no-doc-info``.
doctitle_xform
~~~~~~~~~~~~~~
Enable the promotion of a lone top-level section title
to `document title`_ (and subsequent section title to document
subtitle promotion; docutils.transforms.frontmatter.DocTitle).
*Default*: True. *Options*: ``--no-doc-title``.
sectsubtitle_xform
~~~~~~~~~~~~~~~~~~
Enable the promotion of the title of a lone subsection
to a subtitle (docutils.transforms.frontmatter.SectSubTitle).
:Default: False.
:Options: ``--section-subtitles``, ``--no-section-subtitles``.
[pep reader]
------------
The `pep_references`_ and `rfc_references`_ settings
(`[restructuredtext parser]`_) are set on by default.
.. [python reader]
---------------
Not implemented.
[writers]
=========
[docutils_xml writer]
---------------------
doctype_declaration
~~~~~~~~~~~~~~~~~~~
Generate XML with a DOCTYPE declaration.
*Default*: True. *Options*: ``--no-doctype``.
indents
~~~~~~~
Generate XML with indents and newlines.
*Default*: None (disabled). *Options*: ``--indents``.
newlines
~~~~~~~~
Generate XML with newlines before and after block-level tags.
*Default*: None (disabled). *Options*: ``--newlines``.
.. _xml_declaration [docutils_xml writer]:
xml_declaration
~~~~~~~~~~~~~~~
Generate XML with an XML declaration.
See also `xml_declaration [html writers]`_.
.. Caution:: The XML declaration carries text encoding information.
If the encoding is not UTF-8 or ASCII and the XML declaration is
missing, standard tools may be unable to read the generated XML.
*Default*: True. *Option*: ``--no-xml-declaration``.
[html writers]
--------------
.. _attribution [html writers]:
attribution
~~~~~~~~~~~
Format for `block quote`_ attributions: one of "dash" (em-dash
prefix), "parentheses"/"parens", or "none".
See also `attribution [latex writers]`_.
*Default*: "dash". *Option*: ``--attribution``.
cloak_email_addresses
~~~~~~~~~~~~~~~~~~~~~
Scramble email addresses to confuse harvesters. In the reference
URI, the "@" will be replaced by %-escapes (as of RFC 1738). In
the visible text (link text) of an email reference, the "@" and
all periods (".") will be surrounded by ``<span>`` tags.
Furthermore, HTML entities are used to encode these characters in
order to further complicate decoding the email address. For
example, "abc@example.org" will be output as::
<a class="reference" href="mailto:abc%40example.org">
abc<span>@</span>example<span>.</span>org</a>
.. Note:: While cloaking email addresses will have little to no
impact on the rendering and usability of email links in most
browsers, some browsers (e.g. the ``links`` browser) may decode
cloaked email addresses incorrectly.
*Default*: None (disabled). *Option*: ``--cloak-email-addresses``.
compact_lists
~~~~~~~~~~~~~
Remove extra vertical whitespace between items of `bullet lists`_ and
`enumerated lists`_, when list items are all "simple" (i.e., items
each contain one paragraph and/or one "simple" sub-list only).
With the "html5" writer, the setting can be overridden for individual
lists using the `"class" directive`_ (values "compact" and "open").
:Default: True.
:Options: ``--compact-lists``, ``--no-compact-lists``.
compact_field_lists
~~~~~~~~~~~~~~~~~~~
Remove extra vertical whitespace between items of `field lists`_ that
are "simple" (i.e., all field bodies each contain at most one paragraph).
With the "html5" writer, the setting can be overridden for individual
lists using the `"class" directive`_ (values "compact" and "open").
:Default: True.
:Options: ``--compact-field-lists``, ``--no-compact-field-lists``.
.. _embed_stylesheet [html writers]:
embed_stylesheet
~~~~~~~~~~~~~~~~
Embed the stylesheet in the output HTML file. The stylesheet file
must specified by the stylesheet_path_ setting and must be
accessible during processing.
See also `embed_stylesheet [latex writers]`_.
:Default: True.
:Options: ``--embed-stylesheet``, ``--link-stylesheet``.
.. _footnote_references setting:
.. _footnote_references [html writers]:
footnote_references
~~~~~~~~~~~~~~~~~~~
Format for `footnote references`_, one of "superscript" or "brackets".
See also `footnote_references [latex writers]`_.
Overrides also trim_footnote_reference_space_,
if the parser supports this option. [#override]_
*Default*: "brackets". *Option*: ``--footnote-references``.
initial_header_level
~~~~~~~~~~~~~~~~~~~~
The initial level for section header elements. This does not affect the
document title & subtitle; see doctitle_xform_.
:Default: writer dependent
(see `[html4css1 writer]`_, `[html5 writer]`_, `[pep_html writer]`_).
:Option: ``--initial-header-level``.
math_output
~~~~~~~~~~~
The format of mathematical content (`"math" directive`_ and role) in
the output document. Supported values are (case insensitive):
HTML:
Format math in standard HTML enhanced by CSS rules.
Requires the ``math.css`` stylesheet (in the system
`stylesheet directory <stylesheet_dirs [html writers]_>`__)
A `stylesheet_path <stylesheet_path [html writers]_>`__
can be appended after whitespace. The specified
stylesheet(s) will only be referenced or embedded if required
(i.e. if there is mathematical content in the document).
MathML:
Embed math content as presentational MathML_.
Self-contained documents (no JavaScript, no external downloads).
MathML is part of the HTML5 standard [#mathml-in-html4]_ and
`supported by all major browsers`__ (since January 2023 also by Chrome).
.. [#mathml-in-html4]
With the "html4css1" writer, the resulting HTML document does
not validate, as there is no DTD for `MathML + XHTML Transitional`.
However, MathML-enabled browsers will render it fine.
Docutil's latex2mathml converter supports a considerable
`subset of LaTeX math syntax`__.
An external converter can be appended after whitespace, e.g.,
``--math-output="MathML blahtexml"``:
.. class:: run-in narrow
:blahtexml_: Fast conversion, support for many symbols and environments,
but no "align" (or other equation-aligning) environment. (C++)
:LaTeXML_: Comprehensive macro support but **very** slow. (Perl)
:TtM_: No "matrix", "align" and "cases" environments.
Support may be removed.
:Pandoc_: Comprehensive macro support, fast, but a large install size.
(Haskell)
__ https://developer.mozilla.org/en-US/docs/Web/MathML#browser_compatibility
__ ../ref/rst/mathematics.html
MathJax:
Format math for display with MathJax_, a JavaScript-based math rendering
engine.
:Pro: Works across multiple browsers and platforms.
Large set of `supported LaTeX math commands and constructs`__
:Con: Rendering requires JavaScript and an Internet connection or local
MathJax installation.
__ http://docs.mathjax.org/en/latest/input/tex/macros/index.html
A URL pointing to a MathJax library should be appended after whitespace.
A warning is given if this is missing.
* It is recommended to install__ the MathJax library on the same
server as the rest of the deployed site files.
__ https://www.mathjax.org/#installnow
Example: Install the library at the top level of the web
server’s hierarchy in the directory ``MathJax`` and set::
math-output: mathjax /MathJax/MathJax.js
* The easiest way to use MathJax is to link directly to a public
installation. In that case, there is no need to install MathJax locally.
Downside: Downloads JavaScript code from a third-party site --- opens
the door to cross-site scripting attacks!
Example: MathJax `getting started`__ documentation uses::
math-output: mathjax
https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
See https://www.jsdelivr.com/ for details and terms of use.
__ https://www.mathjax.org/#gettingstarted
* Use a local MathJax installation on the *client* machine, e.g.::
math-output: MathJax file:/usr/share/javascript/mathjax/MathJax.js
This is the fallback if no URL is specified.
LaTeX:
Include literal LaTeX code.
The failsafe fallback.
:Default: "HTML math.css". The default for the HTML5 writer will change
to "MathML" in Docutils 0.22.
:Option: ``--math-output``.
.. _MathJax: http://www.mathjax.org/
.. _MathML: https://www.w3.org/TR/MathML/
.. _blahtexml: http://gva.noekeon.org/blahtexml/
.. _LaTeXML: http://dlmf.nist.gov/LaTeXML/
.. _TtM: http://hutchinson.belmont.ma.us/tth/mml/
.. _Pandoc: https://pandoc.org/
.. _stylesheet:
.. _stylesheet [html writers]:
stylesheet
~~~~~~~~~~
List of CSS stylesheet URLs (comma-separated_). Used verbatim.
Overrides also stylesheet_path_. [#override]_
See also `stylesheet [latex writers]`_.
*Default*: empty list. *Option*: ``--stylesheet``.
.. _stylesheet_dirs:
.. _stylesheet_dirs [html writers]:
stylesheet_dirs
~~~~~~~~~~~~~~~
List of directories where stylesheets can be found (comma-separated_).
Used by the stylesheet_path_ setting when resolving relative path arguments.
See also `stylesheet_dirs [latex writers]`_.
Note: This setting defines a "search path" (similar to the PATH variable for
executables). However, the term "path" is already used in the
stylesheet_path_ setting with the meaning of a file location.
:Default: the working directory of the process at launch
and the directory with default stylesheet files
(writer and installation specific).
Use the ``--help`` option to get the exact value.
:Option: ``--stylesheet-dirs``.
.. _stylesheet_path:
.. _stylesheet_path [html writers]:
stylesheet_path
~~~~~~~~~~~~~~~
List of paths to CSS stylesheets (comma-separated_). Relative paths are
expanded if a matching file is found in the stylesheet_dirs__.
If embed_stylesheet__ is False, paths are rewritten relative to
the output_ file (if specified) or the current work directory.
See also `stylesheet_path [latex writers]`_.
Overrides also stylesheet_. [#override]_
Pass an empty string (to either "stylesheet" or "stylesheet_path") to
deactivate stylesheet inclusion.
:Default: writer dependent (see `[html4css1 writer]`_,
`[html5 writer]`_, `[pep_html writer]`_).
:Option: ``--stylesheet-path``.
__ `embed_stylesheet [html writers]`_
__ `stylesheet_dirs [html writers]`_
.. _table_style [html writers]:
table_style
~~~~~~~~~~~
Class value(s) added to all tables_.
See also `table_style [latex writers]`_.
The default CSS sylesheets define:
:borderless: no borders around table cells,
:align-left, align-center, align-right: align table.
The HTML5 stylesheets also define:
:booktabs:
Only lines above and below the table and a thin line after the head.
:captionbelow:
Place the table caption below the table (new in Docutils 0.17).
In addition, the HTML writers process:
:colwidths-auto:
Delegate the determination of table column widths to the back-end
(leave out the ``<colgroup>`` column specification).
Overridden by the "widths" option of the `"table" directive`_.
:colwidths-grid:
Write column widths determined from the source to the HTML file.
Overridden by the "widths" option of the `"table" directive`_.
*Default*: "". *Option*: ``--table-style``.
.. _template [html writers]:
template
~~~~~~~~
Path [#pwd]_ to template file, which must be encoded in UTF-8.
See also `template [latex writers]`_.
:Default: "template.txt" in the writer's directory (installed automatically)
For the exact machine-specific path, use the ``--help`` option).
:Option: ``--template``.
.. _xml_declaration [html writers]:
xml_declaration
~~~~~~~~~~~~~~~
Prepend an XML declaration.
See also `xml_declaration [docutils_xml writer]`_.
.. Caution:: The XML declaration carries text encoding information. If the
encoding is not UTF-8 or ASCII and the XML declaration is missing,
standard XML tools may be unable to read the generated XHTML.
:Default: writer dependent.
:Options: ``--xml-declaration``, ``--no-xml-declaration``.
[html4css1 writer]
~~~~~~~~~~~~~~~~~~
The `HTML4/CSS1 Writer`_ generates output that conforms to the
`XHTML 1 Transitional`_ specification.
It shares all settings defined in the `[html writers]`_
`configuration section`_.
Writer Specific Defaults
""""""""""""""""""""""""
.. class:: run-in narrow
:`initial_header_level`_: 1 (for "<h1>").
:`stylesheet_path <stylesheet_path [html writers]_>`__: "html4css1.css".
:`xml_declaration <xml_declaration [html writers]_>`__: True.
.. _HTML4/CSS1 Writer: html.html#html4css1
.. _XHTML 1 Transitional: https://www.w3.org/TR/xhtml1/
field_name_limit
""""""""""""""""
The maximum length (in characters) for one-column `field names`_. Longer
field names will span an entire row of the table used to render the field
list. 0 indicates "no limit". See also option_limit_.
*Default*: 14. *Option*: ``--field-name-limit``.
option_limit
""""""""""""
The maximum length (in characters) for one-column options in `option lists`_.
Longer options will span an entire row of the table used to render
the option list. 0 indicates "no limit".
See also field_name_limit_.
*Default*: 14. *Option*: ``--option-limit``.
[html5 writer]
~~~~~~~~~~~~~~
The `HTML5 Writer`_ generates valid XML that is compatible with `HTML5`_.
It shares all settings defined in the `[html writers]`_
`configuration section`_.
New in Docutils 0.13.
.. _HTML5 Writer: html.html#html5-polyglot
.. _HTML5: https://www.w3.org/TR/2014/REC-html5-20141028/
Writer Specific Defaults
""""""""""""""""""""""""
.. class:: run-in narrow
:initial_header_level_: 2 (reserve <h1> for the `document title`_). [#]_
:`stylesheet_path <stylesheet_path [html writers]_>`__:
"minimal.css, plain.css".
:`xml_declaration <xml_declaration [html writers]_>`__: False.
.. [#] Documents without (visible) document title may have <h2> as highest
heading level, which is not recommended but valid (cf. "`Headings and
outlines`__" in the HTML Standard). The default will change to None
(<h2> if there is a document title, else <h1>) in Docutils 1.0.
__ https://html.spec.whatwg.org/multipage/sections.html
#headings-and-outlines-2
image_loading
"""""""""""""
Indicate at which point images should be loaded.
Overridden by the `"image" directive`_'s ``:loading:`` option.
Supported values:
:embed: Embed still images into the HTML document
(ignored for videos).
:link: Refer to images in the HTML document (default).
:lazy: Refer to images. Additionally specify the
`lazy loading attribute`_ to defer fetching the image.
*Default*: "link". *Option*: ``--image-loading``.
New in Docutils 0.18.
.. _lazy loading attribute: https://html.spec.whatwg.org/multipage/
urls-and-fetching.html#lazy-loading-attributes
section_self_link
"""""""""""""""""
Append an empty anchor element with a ``href`` to the section to
section headings. See ``responsive.css`` for an example how this can be
styled to show a symbol allowing users to copy the section's URL.
:Default: False.
:Options: ``--section-self-link``, ``--no-section-self-link``.
New in Docutils 0.18.
[pep_html writer]
~~~~~~~~~~~~~~~~~
The PEP/HTML Writer derives from the HTML4/CSS1 Writer, and shares
all settings defined in the `[html writers]`_ and `[html4css1 writer]`_
`configuration sections`_.
Writer Specific Defaults
""""""""""""""""""""""""
.. class:: run-in narrow
:`initial_header_level`_: 1 (for "<h1>").
:`stylesheet_path <stylesheet_path [html writers]_>`__: "pep.css".
:`template <template [html writers]_>`__:
``docutils/writers/pep_html/template.txt`` in the installation directory.
For the exact machine-specific path, use the ``--help`` option.
no_random
"""""""""
Do not use a random banner image. Mainly used to get predictable
results when testing.
*Default*: None (use random banner). *Options*: ``--no-random`` (hidden).
pep_home
""""""""
Home URL prefix for PEPs.
*Default*: "." (current directory). *Option*: ``--pep-home``.
python_home
"""""""""""
Python's home URL.
*Default*: "https://www.python.org". *Option*: ``--python-home``.
[s5_html writer]
~~~~~~~~~~~~~~~~
The S5/HTML Writer derives from the HTML4/CSS1 Writer, and shares
all settings defined in the `[html writers]`_ and `[html4css1 writer]`_
`configuration sections`_.
Writer Specific Defaults
""""""""""""""""""""""""
.. class:: run-in narrow
:compact_lists_: disable compact lists.
:template__: ``docutils/writers/s5_html/template.txt`` in the
installation directory. For the exact machine-specific
path, use the ``--help`` option.
__ `template [html writers]`_
hidden_controls
"""""""""""""""
Auto-hide the presentation controls in slideshow mode, or keep
them visible at all times.
:Default: True (auto-hide).
:Options: ``--hidden-controls``, ``--visible-controls``.
current_slide
"""""""""""""
Enable or disable the current slide indicator ("1/15").
:Default: None (disabled).
:Options: ``--current-slide``, ``--no-current-slide``.
overwrite_theme_files
"""""""""""""""""""""
Allow or prevent the overwriting of existing theme files in the
``ui/<theme>`` directory. This has no effect if "theme_url_" is
used.
:Default: None (keep existing theme files).
:Options: ``--keep-theme-files``, ``--overwrite-theme-files``.
theme
"""""
Name of an installed S5 theme, to be copied into a ``ui/<theme>``
subdirectory, beside the destination file (output HTML). Note
that existing theme files will not be overwritten; the existing
theme directory must be deleted manually.
Overrides also theme_url_. [#override]_
*Default*: "default". *Option*: ``--theme``.
theme_url
"""""""""
The URL of an S5 theme directory. The destination file (output
HTML) will link to this theme; nothing will be copied.
Overrides also theme_. [#override]_
*Default*: None. *Option*: ``--theme-url``.
view_mode
"""""""""
The initial view mode, either "slideshow" or "outline".
*Default*: "slidewhow". *Option*: ``--view-mode``.
[latex writers]
----------------
Common settings for the `LaTeX writers`_
`[latex2e writer]`_ and `[xetex writer]`_.
.. _LaTeX writers: latex.html
.. _attribution [latex writers]:
attribution
~~~~~~~~~~~
Format for `block quote`_ attributions: one of "dash" (em-dash
prefix), "parentheses"/"parens", or "none".
See also `attribution [html writers]`_.
*Default*: "dash". *Option*: ``--attribution``.
compound_enumerators
~~~~~~~~~~~~~~~~~~~~
Enable or disable compound enumerators for nested `enumerated lists`_
(e.g. "1.2.a.ii").
:Default: None (disabled).
:Options: ``--compound-enumerators``, ``--no-compound-enumerators``.
documentclass
~~~~~~~~~~~~~
Specify LaTeX documentclass.
*Default*: "article". *Option*: ``--documentclass``.
documentoptions
~~~~~~~~~~~~~~~
Specify document options. Multiple options can be given, separated by
commas.
*Default*: "a4paper". *Option*: ``--documentoptions``.
docutils_footnotes
~~~~~~~~~~~~~~~~~~
Use the Docutils-specific macros ``\DUfootnote`` and
``\DUfootnotetext`` for footnotes_.
TODO: The alternative, "latex_footnotes" is not implemented yet.
*Default*: True. *Option*: ``--docutils-footnotes``.
.. _embed_stylesheet [latex writers]:
embed_stylesheet
~~~~~~~~~~~~~~~~
Embed the stylesheet(s) in the header of the output file. The
stylesheets must be accessible during processing. Currently, this
fails if the file is not available via the given path (i.e. the
file is *not* searched in the `TeX input path`_).
See also `embed_stylesheet [html writers]`_.
:Default: False (link to stylesheet).
:Options: ``--embed-stylesheet``, ``--link-stylesheet``.
.. _footnote_references [latex writers]:
footnote_references
~~~~~~~~~~~~~~~~~~~
Format for `footnote references`_: one of "superscript" or "brackets".
See also `footnote_references [html writers]`_.
Overrides also trim_footnote_reference_space_,
if the parser supports this option. [#override]_
*Default*: "superscript". *Option*: ``--footnote-references``.
graphicx_option
~~~~~~~~~~~~~~~
LaTeX graphicx package option.
Possible values are "dvips", "pdftex", "dvipdfmx".
*Default*: "". *Option*: ``--graphicx-option``.
hyperlink_color
~~~~~~~~~~~~~~~
Color of any hyperlinks embedded in text.
Special values:
.. class:: run-in narrow
:"0" or "false": disables coloring of links
(links will be marked by red boxes that are not printed).
:"black": results in “invisible“ links.
Set hyperref_options_ to "draft" to completely disable hyperlinking.
*Default*: "blue". *Option*: ``--hyperlink-color``.
hyperref_options
~~~~~~~~~~~~~~~~
Options for the `hyperref TeX package`_.
If hyperlink_color_ is not "false", the expansion of ::
'colorlinks=true,linkcolor=%s,urlcolor=%s' % (
hyperlink_color, hyperlink_color)
is prepended.
*Default*: "". *Option*: ``--hyperref-options``.
.. _hyperref TeX package: http://tug.org/applications/hyperref/
latex_preamble
~~~~~~~~~~~~~~
LaTeX code that will be inserted in the document preamble.
Can be used to load packages with options or (re-) define LaTeX
macros without writing a custom style file.
:Default: writer dependent (see `[latex2e writer]`_, `[xetex writer]`_).
:Option: ``--latex-preamble``.
legacy_class_functions
~~~~~~~~~~~~~~~~~~~~~~
Use legacy functions ``\DUtitle`` and ``\DUadmonition`` with a
comma-separated list of class values as optional argument. If `False`, class
values are handled with wrappers and admonitions use the ``DUadmonition``
environment. See `Generating LaTeX with Docutils`__ for details.
:Default: False (default changed in Docutils 0.18).
:Options: ``--legacy-class-functions``, ``--new-class-functions``.
New in Docutils 0.17
__ latex.html#classes
legacy_column_widths
~~~~~~~~~~~~~~~~~~~~
Use "legacy algorithm" to determine table column widths (for backwards
compatibility).
The new algorithm limits the table width to the text width or specified
table width and keeps the ratio of specified column widths.
Custom table and/or column widths can be set with the respective options
of the `"table" directive`_. See also `Generating LaTeX with Docutils`__.
:Default: True (will change to False in Docutils 1.0).
:Options: ``--legacy-column-widths``, ``--new-column-widths``.
New in Docutils 0.18.
__ latex.html#table-style
literal_block_env
~~~~~~~~~~~~~~~~~
Environment for `literal blocks`_. Used when the block does not contain
inline elements. [#]_
The values "lstlisting", "listing", "verbatim", "Verbatim", and
"verbatimtab" work out of the box; required LaTeX package are
automatically loaded.
:Default: "" (use "alltt" with quoting of whitespace and special chars).
:Option: ``--literal-block-env``.
.. [#] A <literal-block> element originating from a `"parsed-literal"`_ or
`"code"`_ directive may contain inline elements. LaTeX' verbatim-like
environments cannot be used in this case.
reference_label
~~~~~~~~~~~~~~~
Per default the LaTeX writer uses ``\hyperref`` for `hyperlink
references`_ to internal__ or implicit__ targets.
Specify an alternative reference command name, e.g., "ref" or "pageref"
to get the section number or the page number as reference text.
.. Caution::
* Drops the original reference text.
* Experimental. Not sufficiently tested.
* Fails, e.g., with section numbering by Docutils (cf. sectnum_xform_)
or tables without caption.
.. admonition:: Provisional
To be replaced by a dedicated `interpreted text role`_ for references
(cf. TODO__).
*Default*: "" (use ``\hyperref``). *Option*: ``--reference-label``.
__ ../ref/rst/restructuredtext.html#internal-hyperlink-targets
__ ../ref/rst/restructuredtext.html#implicit-hyperlink-targets
__ ../dev/todo.html#object-numbering-and-object-references
.. _hyperlink references: ../ref/rst/restructuredtext.html#hyperlink-references
.. _interpreted text role: ../ref/rst/restructuredtext.html#interpreted-text
section_enumerator_separator
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
The separator between section number prefix and enumerator for
compound enumerated lists (see `compound_enumerators`_).
Generally it isn't recommended to use both, numbered sub-sections and
nested enumerated lists with compound enumerators. This setting avoids
ambiguity in the situation where a section "1" has a list item
enumerated "1.1", and subsection "1.1" has list item "1". With a
separator of ".", these both would translate into a final compound
enumerator of "1.1.1". With a separator of "-", we get the
unambiguous "1-1.1" and "1.1-1".
*Default*: "-". *Option*: ``--section-enumerator-separator``.
section_prefix_for_enumerators
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Enable or disable section ("." subsection ...) prefixes for
compound enumerators. This has no effect unless
`compound_enumerators`_ are enabled.
:Default: None (disabled).
:Options: ``--section-prefix-for-enumerators``,
``--no-section-prefix-for-enumerators``.
.. _stylesheet [latex writers]:
stylesheet
~~~~~~~~~~
List of style files (comma-separated_). Used verbatim
(under Windows, path separators are normalized to forward slashes).
Overrides also stylesheet_path__. [#override]_
See also `stylesheet [html writers]`_.
If `embed_stylesheet`__ is False (default), the stylesheet files are
referenced with ``\usepackage`` (values with extension ``.sty`` or no
extension) or ``\input`` (any other extension).
LaTeX will search the specified files in the `TeX input path`_.
*Default*: empty list. *Option*: ``--stylesheet``.
__ `stylesheet_path [latex writers]`_
__ `embed_stylesheet [latex writers]`_
.. _TeX input path: https://texfaq.org/FAQ-tds
.. _stylesheet_dirs [latex writers]:
stylesheet_dirs
~~~~~~~~~~~~~~~
List of directories where stylesheets can be found (comma-separated_).
Used by the stylesheet_path__ setting.
Note: This setting defines a "search path" (similar to the PATH variable
for executables). However, the term "path" is already used in the
stylesheet_path__ setting with the meaning of a file location.
:Default: the working directory of the process at launch.
:Option: ``--stylesheet-dirs``.
__
__ `stylesheet_path [latex writers]`_
.. _stylesheet_path [latex writers]:
stylesheet_path
~~~~~~~~~~~~~~~
List of style files (comma-separated_). Relative paths are expanded if a
matching file is found in the stylesheet_dirs__.
If embed_stylesheet__ is False, paths are rewritten relative to
the output file (if output_ or `\<destination>`_ are specified)
or the current work directory.
Overrides also stylesheet__. [#override]_
See also `stylesheet_path [html writers]`_.
For files in the `TeX input path`_, the stylesheet__ option is recommended.
*Default*: empty list. *Option*: ``--stylesheet-path``.
.. _<destination>: tools.html#usage-pattern
__ `stylesheet_dirs [latex writers]`_
__ `embed_stylesheet [latex writers]`_
__
__ `stylesheet [latex writers]`_
.. _table_style [latex writers]:
table_style
~~~~~~~~~~~
Specify the default style for tables_.
See also `table_style [html writers]`_.
Supported values: "booktabs", "borderless", "colwidths-auto", and "standard".
See `Generating LaTeX with Docutils`__ for details.
*Default*: "standard". *Option*: ``--table-style``.
__ latex.html#table-style
.. _template [latex writers]:
template
~~~~~~~~
Path [#pwd]_ to template file, which must be encoded in UTF-8.
See also `template [html writers]`_.
:Default: writer dependent (see `[latex2e writer]`_, `[xetex writer]`_).
:Option: ``--template``.
use_bibtex
~~~~~~~~~~
List of style and database(s) for the experimental `BibTeX` support
(comma-separated_). Example::
--use-bibtex=unsrt,mydb1,mydb2
.. admonition:: Provisional
Name, values, and behaviour may change in future versions or the
option may be removed.
*Default*: empty list (don't use BibTeX). *Option* ``--use-bibtex``.
use_latex_abstract
~~~~~~~~~~~~~~~~~~
Use LaTeX abstract environment for the document's abstract_.
*Default*: False.
*Options*: ``--use-latex-abstract``, ``--topic-abstract``.
use_latex_citations
~~~~~~~~~~~~~~~~~~~
Use ``\cite`` for citations_.
:Default: False (use simulation with figure-floats).
The default will change in Docutils 1.0.
:Options: ``--use-latex-citations``, ``--figure-citations``.
use_latex_docinfo
~~~~~~~~~~~~~~~~~
Attach author and date to the `document title`_.
:Default: False (attach author and date to the `bibliographic fields`_).
:Options: ``--use-latex-docinfo``, ``--use-docutils-docinfo``.
use_latex_toc
~~~~~~~~~~~~~
Let LaTeX generate the `table of contents`_. Generates a ToC with page numbers.
Usually LaTeX must be run twice to get the numbers correct.
*Default*: True. *Options*: ``--use-latex-toc``, ``--use-docutils-toc``.
use_part_section
~~~~~~~~~~~~~~~~
Add parts on top of the section hierarchy.
*Default*: False. *Option*: ``--use-part-section``.
[latex2e writer]
~~~~~~~~~~~~~~~~
The `LaTeX2e writer`_ generates a LaTeX source suited for compilation
with 8-bit LaTeX (pdfTeX_). It shares all settings defined in the `[latex
writers]`_ `configuration section`_.
.. _LaTeX2e writer: latex.html#latex2e-writer
.. _pdfTeX: https://www.tug.org/applications/pdftex/
Writer Specific Defaults
""""""""""""""""""""""""
.. class:: run-in narrow
:latex_preamble_: Load the "PDF standard fonts" (Times, Helvetica, Courier)::
\usepackage{mathptmx} % Times
\usepackage[scaled=.90]{helvet}
\usepackage{courier}
:template__:
"default.tex" in the ``docutils/writers/latex2e/`` directory
(installed automatically).
__ `template [latex writers]`_
font_encoding
"""""""""""""
String with `LaTeX font encoding`_. Multiple encodings can be specified
separated by commas. The last value becomes the document default.
*Default*: "T1". *Option*: ``--font-encoding``.
.. _LaTeX font encoding: latex.html#font-encoding
[xetex writer]
~~~~~~~~~~~~~~
The `XeTeX writer`_ generates a LaTeX source suited for compilation with
`XeTeX or LuaTeX`_. It derives from the latex2e writer, and shares all
settings defined in the `[latex writers]`_ `configuration section`_.
.. _XeTeX writer: latex.html#xetex-writer
.. _XeTeX or LuaTeX: https://texfaq.org/FAQ-xetex-luatex
Writer Specific Defaults
""""""""""""""""""""""""
.. class:: run-in narrow
:latex_preamble_: Font setup for `Linux Libertine`_,::
% Linux Libertine (free, wide coverage, not only for Linux)
\setmainfont{Linux Libertine O}
\setsansfont{Linux Biolinum O}
\setmonofont[HyphenChar=None]{DejaVu Sans Mono}
The optional argument ``HyphenChar=None`` to the monospace font
prevents word hyphenation in literal text.
:template__: "xelatex.tex" in the ``docutils/writers/latex2e/`` directory
(installed automatically).
.. TODO: show full path with ``--help`` (like in the HTML
writers) and add the following line: for the exact
machine-specific path, use the ``--help`` option).
.. _Linux Libertine: http://www.linuxlibertine.org/
__ `template [latex writers]`_
.. _ODF/ODT Writer:
[odf_odt writer]
----------------
The ODF/`ODT Writer`_ generates documents in the
OpenDocument_ Text format (.odt).
The output_encoding_ setting is ignored, the output encoding is
always "UTF-8".
.. _ODT Writer: odt.html
.. _OpenDocument: https://en.wikipedia.org/wiki/OpenDocument
add-syntax_highlighting
~~~~~~~~~~~~~~~~~~~~~~~
Add syntax highlighting in literal code blocks.
See section "`Syntax highlighting`__" in the ODT Writer documentation
for details.
:Default: False.
:Options: ``--add-syntax-highlighting``, ``--no-syntax-highlighting``.
__ odt.html#syntax-highlighting
create_links
~~~~~~~~~~~~
Create links.
*Default*: False.
*Options*: ``--create-links``, ``--no-links``.
create_sections
~~~~~~~~~~~~~~~
Create sections for headers.
:Default: True.
:Options: ``--create-sections``, ``--no-sections``.
cloak_email_addresses
~~~~~~~~~~~~~~~~~~~~~
Obfuscate email addresses to confuse harvesters while still
keeping email links usable with standards-compliant browsers.
:Default: False.
:Options: ``--cloak-email-addresses``, ``--no-cloak-email-addresses``.
custom_header
~~~~~~~~~~~~~
Specify the contents of a custom header line.
See section "`Custom header/footers`_" in the ODT Writer documentation
for details.
*Default*: "" (no header).
*Option*: ``--custom-odt-header``.
custom_footer
~~~~~~~~~~~~~
Specify the contents of a custom footer line.
See section "`Custom header/footers`_" in the ODT Writer documentation
for details.
*Default*: "" (no footer).
*Option*: ``--custom-odt-footer``.
.. _custom header/footers:
odt.html#custom-header-footers-inserting-page-numbers-date-time-etc
endnotes_end_doc
~~~~~~~~~~~~~~~~
Generate endnotes at end of document, not footnotes at bottom of page.
:Default: False.
:Options: ``--endnotes-end-doc``, ``--no-endnotes-end-doc``.
generate_oowriter_toc
~~~~~~~~~~~~~~~~~~~~~
Generate a native ODF table of contents, not a bullet list.
See section "`Table of contents`__" in the ODT Writer documentation
for details.
:Default: True.
:Options: ``--generate-oowriter-toc``, ``--generate-list-toc``.
__ odt.html#table-of-contents
odf_config_file
~~~~~~~~~~~~~~~
Path [#pwd]_ to a configuration/mapping file for additional ODF options.
In particular, this file may contain a mapping of default style names to
names used in the resulting output file.
See section `How to use custom style names`__ in the
ODT Writer documentation for details.
*Default*: None.
*Option*: ``--odf-config-file``.
__ odt.html#how-to-use-custom-style-names
stylesheet
~~~~~~~~~~
Path [#pwd]_ to a style file. See section `Styles and Classes`_
in the ODT Writer documentation for details.
:Default: "writers/odf_odt/styles.odt" in the installation directory.
:Option: ``--stylesheet``.
.. _styles and classes: odt.html#styles-and-classes
table_border_thickness
~~~~~~~~~~~~~~~~~~~~~~
Specify the thickness of table borders in thousands of a centimetre.
The `Table styles`__ section in the ODT Writer documentation describes
alternatives for additional customisation of the table style.
*Default*: 35 (0.35 mm).
*Option*: ``--table-border-thickness``.
__ odt.html#table-styles
[pseudoxml writer]
------------------
detailed
~~~~~~~~~
Pretty-print <#text> nodes.
*Default*: False. *Option*: ``--detailed``.
[applications]
==============
Some `front end tools`_ provide additional settings.
.. _buildhtml:
[buildhtml application]
-----------------------
buildhtml.py_ generates HTML documents from reStructuredText source
files in a set of directories and their subdirectories.
All visited directories are scanned for "docutils.conf" files which are
parsed after the standard configuration files. Path settings [#pwd]_ in
these files are resolved relative to the respective directory.
The output_ setting is ignored.
dry_run
~~~~~~~
Do not process files, show files that would be processed.
*Default*: False (process files). *Option*: ``--dry-run``.
ignore
~~~~~~
List of glob-style patterns [#globbing]_ (colon-separated_).
Source files with matching filename are silently ignored.
Values are appended. [#append-values]_
*Default*: empty list. *Option*: ``--ignore``.
prune
~~~~~
List of glob-style patterns [#globbing]_ (colon-separated_).
Matching directories are skipped. Values are appended. [#append-values]_
Patterns are expanded similar to path settings [#pwd]_ and matched
against the absolute path of to-be-processed directories.
Example: a directory is pruned if it contains a "docutils.conf" file
with the lines ::
[buildhtml application]
prune: '.'
The default patterns skip auxiliary directories from Python or
popular version control tools anywhere [#]_.
:Default: ``/*/.hg:/*/.bzr:/*/.git:/*/.svn:/*/.venv:/*/__pycache__``.
:Option: ``--prune``.
.. [#] The leading "/" prevents expansion with `pwd`;
``fnmatch('/*')`` matches any absolute path.
recurse
~~~~~~~
Recursively scan subdirectories.
*Default*: True. *Options*: ``--recurse``, ``--local``.
sources
~~~~~~~
List of glob-style [#globbing]_ patterns (colon-separated_).
Files with matching filename are treated as source documents.
Values in configuration files overwrite the default and are
overwritten by the command line option.
*Default*: ``*.rst:*.txt``. *Option*: ``--rst-sources``.
New in Docutils 0.21.
silent
~~~~~~
Work silently (no progress messages).
Independent of report_level_.
*Default*: None (show progress). *Option*: ``--silent``.
.. _html_writer:
.. _writer [buildhtml application]:
writer
~~~~~~
`HTML writer`_ version. One of "html", "html4", "html5".
:Default: "html" (use Docutils' `default HTML writer`_).
:Option: ``--writer``
New in 0.17. Obsoletes the ``html_writer`` option.
.. _HTML writer: html.html
.. _default HTML writer: html.html#html
.. [#globbing] Pattern matching is done with the `fnmatch module`_.
It resembles shell-style globbing, but without special treatment
of path separators and '.' (in contrast__ to the `glob module`_ and
`pathlib.PurePath.match()`_).
For example, "``/*.py``" matches "/a/b/c.py".
Provisional: may use `pathlib.PurePath.match()` once this supports "**".
.. _fnmatch module:
https://docs.python.org/3/library/fnmatch.html#module-fnmatch
.. _glob module:
https://docs.python.org/3/library/glob.html#module-glob
.. _pathlib.PurePath.match():
https://docs.python.org/3/library/pathlib.html#pathlib.PurePath.match
__ https://github.com/python/cpython/issues/106747
[docutils application]
--------------------------
Docutils' `generic front end`_ tool allows combining “reader”, “parser”,
and “writer” components from the Docutils package or 3rd party plug-ins.
| New in 0.17. Config file support added in 0.18. Renamed in 0.19
(the old section name "docutils-cli application" is kept as alias).
| Support for reader/parser import names added in 0.19.
.. _generic front end: tools.html#generic-command-line-front-end
reader
~~~~~~
Reader component name.
One of "standalone", "pep", or the import name of a plug-in reader module.
*Default*: "standalone".
*Option*: ``--reader``
parser
~~~~~~
Parser component name.
Either "rst" (default) or the import name of a plug-in parser module.
Parsers for CommonMark_ known to work with Docutils include "pycmark_",
"myst_", and "recommonmark_".
*Default*: "rst".
*Option*: ``--parser``
.. _CommonMark: https://spec.commonmark.org/0.30/
.. _writer [docutils application]:
writer
~~~~~~
Writer component name.
One of "html", "html4", "html5", "latex", "xelatex", "odt", "xml",
"pseudoxml", "manpage", "pep_html", "s5", an alias,
or the import name of a plug-in writer module.
*Default*: "html5".
*Option*: ``--writer``
Other Settings
==============
Command-Line Only
-----------------
These settings are only effective as command-line options; setting
them in configuration files has no effect.
config
~~~~~~
Path to an additional configuration file.
The file is processed immediately (if it exists) with
settings overriding defaults and earlier settings.
Filesystem path settings [#pwd]_ contained within the config file will be
interpreted relative to the config file's location (*not* relative to the
current working directory).
Multiple ``--config`` options may be specified;
each will be processed in turn.
*Default*: None. *Option*: ``--config``.
Internal Settings
-----------------
These settings are for internal use only; setting them in
configuration files has no effect, and there are no corresponding
command-line options.
_config_files
~~~~~~~~~~~~~
List of paths of applied configuration files.
*Default*: None. No command-line options.
_directories
~~~~~~~~~~~~
(``buildhtml.py`` front end.) List of paths to source
directories, set from positional arguments.
*Default*: None (current working directory). No command-line options.
_disable_config
~~~~~~~~~~~~~~~
Prevent standard configuration files from being read.
For command-line use, set the DOCUTILSCONFIG_ variable.
:Default: None (config files enabled). No command-line options.
_destination
~~~~~~~~~~~~
Path to output destination, set from positional arguments.
*Default*: None (stdout). No command-line options.
_source
~~~~~~~
Path to input source, set from positional arguments.
*Default*: None (stdin). No command-line options.
--------------------------------------------------------------------------
.. [#override] The overridden setting will automatically be set to
``None`` for command-line options and config file settings. Client
programs which specify defaults that override other settings must
do the overriding explicitly, by assigning ``None`` to the other
settings.
.. [#append-values] Some settings append values from the various
sources to a list instead of overriding previous values.
The corresponding command line options may be used more than once.
.. [#pwd] Filesystem path relative to the working directory of the
process at launch.
Exception: Path settings in configuration files specified by the
config_ command line option or in directories visited by the
buildhtml_ application are resolved relative to the directory of
the respective configuration file.
Old-Format Configuration Files
==============================
Formerly, Docutils configuration files contained a single "[options]"
section only. This was found to be inflexible, and in August 2003
Docutils adopted the current component-based configuration file
sections as described above.
Up to version 2.0, Docutils will still recognize the old "[options]"
section, but complain with a deprecation warning.
To convert existing config files, the easiest way is to change the
section title: change "[options]" to "[general]". Most settings
haven't changed. The only ones to watch out for are these:
===================== =====================================
Old-Format Setting New Section & Setting
===================== =====================================
pep_stylesheet [pep_html writer] stylesheet
pep_stylesheet_path [pep_html writer] stylesheet_path
pep_template [pep_html writer] template
===================== =====================================
.. References
.. _Docutils Runtime Settings:
.. _runtime settings: ../api/runtime-settings.html
.. RestructuredText Directives
.. _"class" directive: ../ref/rst/directives.html#class
.. _"code": ../ref/rst/directives.html#code
.. _"csv-table": ../ref/rst/directives.html#csv-table
.. _"image" directive: ../ref/rst/directives.html#image
.. _"include": ../ref/rst/directives.html#include
.. _"math" directive: ../ref/rst/directives.html#math
.. _"parsed-literal": ../ref/rst/directives.html#parsed-literal
.. _"raw":
.. _"raw" directive: ../ref/rst/directives.html#raw
.. _"sectnum" directive: ../ref/rst/directives.html#sectnum
.. _"substitution": ../ref/rst/directives.html#substitution
.. _"table" directive: ../ref/rst/directives.html#table
.. _"title" directive: ../ref/rst/directives.html#metadata-document-title
.. _table of contents: ../ref/rst/directives.html#table-of-contents
.. RestructuredText Markup Specification
.. _abstract:
.. _bibliographic field list:
.. _bibliographic fields:
../ref/rst/restructuredtext.html#bibliographic-fields
.. _block quote: ../ref/rst/restructuredtext.html#block-quotes
.. _bullet lists: ../ref/rst/restructuredtext.html#bullet-lists
.. _citations: ../ref/rst/restructuredtext.html#citations
.. _document title: ../ref/rst/restructuredtext.html#document-title
.. _enumerated lists: ../ref/rst/restructuredtext.html#enumerated-lists
.. _field lists: ../ref/rst/restructuredtext.html#field-lists
.. _field names: ../ref/rst/restructuredtext.html#field-names
.. _footnotes: ../ref/rst/restructuredtext.html#footnotes
.. _footnote references: ../ref/rst/restructuredtext.html#footnote-references
.. _inline markup recognition rules:
../ref/rst/restructuredtext.html#inline-markup-recognition-rules
.. _literal blocks: ../ref/rst/restructuredtext.html#literal-blocks
.. _option lists: ../ref/rst/restructuredtext.html#option-lists
.. _tables: ../ref/rst/restructuredtext.html#tables
.. _front end tools: tools.html
.. _buildhtml.py: tools.html#buildhtml-py
.. _BCP 47: https://www.rfc-editor.org/rfc/bcp/bcp47.txt
.. _Error Handlers:
https://docs.python.org/3/library/codecs.html#error-handlers
.. _ISO 639: http://www.loc.gov/standards/iso639-2/php/English_list.php
.. _ISO 3166: http://www.iso.ch/iso/en/prods-services/iso3166ma/
02iso-3166-code-lists/index.html
.. _language tag: https://www.w3.org/International/articles/language-tags/
|