1 ========================
3 ========================
6 :Contact: docutils-develop@lists.sourceforge.net
9 :Copyright: This document has been placed in the public domain.
11 .. sidebar:: Docutils Security for Web Applications
13 For details about securing web applications, please see `Deploying
14 Docutils Securely <../howto/security.html>`_.
23 Configuration files are used for persistent customization; they can be
24 set once and take effect every time you use a front-end tool.
25 Configuration file settings override the built-in defaults, and
26 command-line options override all.
28 By default, Docutils checks the following places for configuration
29 files, in the following order:
31 1. ``/etc/docutils.conf``: This is a system-wide configuration file,
32 applicable to all Docutils processing on the system.
34 2. ``./docutils.conf``: This is a project-specific configuration file,
35 located in the current directory. The Docutils front end has to be
36 executed from the directory containing this configuration file for
37 it to take effect (note that this may have nothing to do with the
38 location of the source files). Settings in the project-specific
39 configuration file will override corresponding settings in the
42 3. ``~/.docutils``: This is a user-specific configuration file,
43 located in the user's home directory. Settings in this file will
44 override corresponding settings in both the system-wide and
45 project-specific configuration files.
47 If more than one configuration file is found, all will be read but
48 later entries will override earlier ones. For example, a "stylesheet"
49 entry in a user-specific configuration file will override a
50 "stylesheet" entry in the system-wide file.
52 The default implicit config file paths can be overridden by the
53 ``DOCUTILSCONFIG`` environment variable. ``DOCUTILSCONFIG`` should
54 contain a colon-separated (semicolon-separated on Windows) sequence of
55 config file paths to search for; leave it empty to disable implicit
56 config files altogether. Tilde-expansion is performed on paths.
57 Paths are interpreted relative to the current working directory.
58 Empty path items are ignored.
60 In addition, a configuration file may be explicitly specified with the
61 "--config" command-line option. This configuration file is read after
62 the three implicit ones listed above (or the ones defined by the
63 ``DOCUTILSCONFIG`` environment variable), and its entries will have
67 -------------------------
68 Configuration File Syntax
69 -------------------------
71 Configuration files are UTF-8-encoded text files. The
72 ConfigParser.py_ module from Python_'s standard library is used to
73 read them. From its documentation:
75 The configuration file consists of sections, lead by a "[section]"
76 header and followed by "name: value" entries, with continuations
77 in the style of `RFC 822`_; "name=value" is also accepted. Note
78 that leading whitespace is removed from values. ... Lines
79 beginning with "#" or ";" are ignored and may be used to provide
82 .. Note:: No format string interpolation is done.
84 Configuration file entry names correspond to internal runtime
85 settings. Underscores ("_") and hyphens ("-") can be used
86 interchangably in entry names; hyphens are automatically converted to
89 For on/off switch settings (booleans), the following values are
92 :On: "true", "yes", "on", "1"
93 :Off: "false", "no", "off", "0", "" (no value)
95 List values are comma-delimited. Whitespace around list values is
98 strip-classes: ham,eggs,
99 strip-elements-with-classes: sugar, salt, flour
100 stylesheet: html4css1.css,
102 style with spaces.css
103 stylesheet-path: ../styles/my.css, ../styles/funny.css
105 expose_internals_ and prune_ use the colon as delimiter and do not strip
108 expose_internals: b:c:d
114 This is the contents of the ``tools/docutils.conf`` configuration file
115 supplied with Docutils::
117 # These entries affect all processing:
120 datestamp: %Y-%m-%d %H:%M UTC
123 # These entries affect HTML output:
125 # Required for docutils-update, the website build system:
126 stylesheet-path: ../docutils/writers/html4css1/html4css1.css
130 Individual configuration sections and settings are described in the
134 -------------------------------------
135 Configuration File Sections & Entries
136 -------------------------------------
138 Below are the Docutils runtime settings, listed by config file
139 section. Any setting may be specified in any section, but only
140 settings from active sections will be used. Sections correspond to
141 Docutils components (module name or alias; section names are always in
142 lowercase letters). Each `Docutils application`_ uses a specific set
143 of components; corresponding configuration file sections are applied
144 when the application is used. Configuration sections are applied in
145 general-to-specific order, as follows:
149 2. `[parsers]`_, parser dependencies, and the section specific to the
150 Parser used ("[... parser]"). Currently, only `[restructuredtext
151 parser]`_ is applicable.
153 3. `[readers]`_, reader dependencies, and the section specific to the
154 Reader used ("[... reader]"). For example, `[pep reader]`_ depends
155 on `[standalone reader]`_.
157 4. `[writers]`_, writer dependencies, and the section specific to the
158 Writer used ("[... writer]"). For example, `[pep_html writer]`_
159 depends on `[html4css1 writer]`_.
161 5. `[applications]`_, application dependencies, and the section
162 specific to the Application (front-end tool) in use
163 ("[... application]").
165 Since any setting may be specified in any section, this ordering
166 allows component- or application-specific overrides of earlier
167 settings. For example, there may be Reader-specific overrides of
168 general settings; Writer-specific overrides of Parser settings;
169 Application-specific overrides of Writer settings; and so on.
171 If multiple configuration files are applicable, the process is
172 completed (all sections are applied in the order given) for each one
173 before going on to the next. For example, a "[pep_html writer]
174 stylesheet" setting in an earlier configuration file would be
175 overridden by an "[html4css1 writer] stylesheet" setting in a later
178 Some knowledge of Python_ is assumed for some attributes.
181 http://www.python.org/doc/current/lib/module-ConfigParser.html
182 .. _Python: http://www.python.org/
183 .. _RFC 822: http://www.rfc-editor.org/rfc/rfc822.txt
184 .. _Docutils application: tools.html
190 Settings in the "[general]" section are always applied.
193 Prefix prepended to all auto-generated IDs generated within the
194 document, after id_prefix_.
196 Default: "id". Options: ``--auto-id-prefix`` (hidden, intended
197 mainly for programmatic use).
200 Include a time/datestamp in the document footer. Contains a
201 format string for Python's ``time.strftime``. See the `time
202 module documentation`__.
204 Default: None. Options: ``--date, -d, --time, -t,
207 Configuration file entry examples::
209 # Equivalent to --date command-line option, results in
210 # ISO 8601 extended format datestamp, e.g. "2001-12-21":
213 # Equivalent to --time command-line option, results in
214 # date/timestamp like "2001-12-21 18:43 UTC":
215 datestamp: %Y-%m-%d %H:%M UTC
217 # Disables datestamp; equivalent to --no-datestamp:
220 __ http://www.python.org/doc/current/lib/module-time.html
223 Report debug-level system messages.
225 Default: don't (None). Options: ``--debug, --no-debug``.
228 At the end of processing, write all internal attributes of the
229 document (``document.__dict__``) to stderr.
231 Default: don't (None). Options: ``--dump-internals`` (hidden, for
232 development use only).
235 At the end of processing, write the pseudo-XML representation of
236 the document to stderr.
238 Default: don't (None). Options: ``--dump-pseudo-xml`` (hidden,
239 for development use only).
242 At the end of processing, write all Docutils settings to stderr.
244 Default: don't (None). Options: ``--dump-settings`` (hidden, for
245 development use only).
248 At the end of processing, write a list of all transforms applied
249 to the document to stderr.
251 Default: don't (None). Options: ``--dump-transforms`` (hidden,
252 for development use only).
255 The text encoding for error output.
257 Default: "ascii". Options: ``--error-encoding, -e``.
259 _`error_encoding_error_handler`
260 The error handler for unencodable characters in error output. See
261 output_encoding_error_handler_ for acceptable values.
263 Default: "backslashreplace" for Python 2.3 and later; "replace"
264 otherwise. Options: ``--error-encoding-error-handler,
265 --error-encoding, -e``.
268 A system message level threshold; non-halting system messages at
269 or above this level will produce a non-zero exit status at normal
270 exit. Exit status is the maximum system message level plus 10 (11
273 Default: disabled (5). Options: ``--exit-status``.
276 List of internal attribues to expose as external attributes (with
277 "internal:" namespace prefix). To specify multiple attributes in
278 configuration files, use colons to separate names; on the command
279 line, the option may be used more than once.
281 Default: don't (None). Options: ``--expose-internal-attribute``
282 (hidden, for development use only).
284 _`footnote_backlinks`
285 Enable or disable backlinks from footnotes and citations to their
288 Default: enabled (1). Options: ``--footnote-backlinks,
289 --no-footnote-backlinks``.
292 Include a "Generated by Docutils" credit and link in the document
295 Default: off (None). Options: ``--generator, -g,
299 The threshold at or above which system messages are converted to
300 exceptions, halting execution immediately. If `traceback`_ is
301 set, the exception will propagate; otherwise, Docutils will exit.
303 Default: severe (4). Options: ``--halt, --strict``.
306 Prefix prepended to all IDs generated within the document. See
307 also auto_id_prefix_.
309 Default: "" (empty). Options: ``--id-prefix`` (hidden, intended
310 mainly for programmatic use).
313 The text encoding for input.
315 Default: auto-detect (None). Options: ``--input-encoding, -i``.
317 _`input_encoding_error_handler`
318 The error handler for undecodable characters in the input.
319 Acceptable values include:
322 Raise an exception in case of an encoding error.
324 Replace malformed data with the official Unicode replacement
327 Ignore malformed data and continue without further notice.
329 Acceptable values are the same as for the "error" parameter of
330 Python's ``unicode`` function; other values may be defined in
331 applications or in future versions of Python.
333 Default: "strict". Options: ``--input-encoding-error-handler,
334 --input-encoding, -i``.
337 Case-insensitive `language tag`_ as defined in `BCP 47`_.
339 Sets the document language, also used for localized directive and
340 role names as well as Docutils-generated text.
342 A typical language identifier consists of a 2-letter language code
343 from `ISO 639`_ (3-letter codes can be used if no 2-letter code
344 exists). The language identifier can have an optional subtag,
345 typically for variations based on country (from `ISO 3166`_
346 2-letter country codes). Avoid subtags except where they add
347 useful distinguishing information. Examples of language tags
348 include "fr", "en-GB", "pt_br" (the same as "pt-BR"), and
349 "de-1901" (German with pre-1998 spelling).
351 The language of document parts can be specified with a
352 "language-<language tag>" `class attribute`_, e.g.
353 ``.. class:: language-el-polyton`` for a quote in polytonic Greek.
355 Default: English ("en"). Options: ``--language, -l``.
357 .. _class attribute: ../ref/doctree.html#classes
360 The text encoding for output.
362 Default: "UTF-8". Options: ``--output-encoding, -o``.
364 _`output_encoding_error_handler`
365 The error handler for unencodable characters in the output.
366 Acceptable values include:
369 Raise an exception in case of an encoding error.
371 Replace malformed data with a suitable replacement marker,
374 Ignore malformed data and continue without further notice.
376 Replace with the appropriate XML character reference, such as
379 (Python 2.3+) Replace with backslashed escape sequences, such
382 Acceptable values are the same as for the "error" parameter of
383 Python's ``encode`` string method; other values may be defined in
384 applications or in future versions of Python.
386 Default: "strict". Options: ``--output-encoding-error-handler,
387 --output-encoding, -o``.
389 _`record_dependencies`
390 Path to a file where Docutils will write a list of files that were
391 required to generate the output, e.g. included files or embedded
392 stylesheets [#dependencies]_. [#pwd]_ The format is one path per
393 line with forward slashes as separator, the encoding is ``utf8``.
395 Set to ``-`` in order to write dependencies to stdout.
397 This option is particularly useful in conjunction with programs like
398 ``make`` using ``Makefile`` rules like::
400 ham.html: ham.txt $(shell cat hamdeps.txt)
401 rst2html.py --record-dependencies=hamdeps.txt ham.txt ham.html
403 If the filesystem encoding differs from utf8, replace the ``cat``
404 command with a call to a converter, e.g.::
406 $(shell iconv -f utf8 -t latin1 hamdeps.txt)
408 Default: None. Option: ``--record-dependencies``.
411 Report system messages at or higher than <level>:
419 Default: warning (2). Options: ``--report, -r, --verbose, -v,
423 Enable or disable automatic section numbering by Docutils
424 (docutils.transforms.parts.SectNum) associated with the `sectnum
427 If disabled, section numbers might be added to the output by the
428 renderer (e.g. LaTeX or via a CSS style definition).
430 Default: enabled (1). Options: ``--section-numbering``,
431 ``--no-section-numbering``.
433 .. _sectnum directive: ../ref/rst/directives.html#sectnum
436 Include a "View document source" link in the document footer. URL
437 will be relative to the destination.
439 Default: don't (None). Options: ``--source-link, -s,
443 An explicit URL for a "View document source" link, used verbatim.
445 Default: compute if source_link (None). Options: ``--source-url,
449 When processing a document tree with the Visitor pattern, raise an
450 error if a writer does not support a node type listed as optional.
451 For transitional development use.
453 Default: disabled (None). Option: ``--strict-visitor`` (hidden,
454 for development use only).
457 Comma-separated list of "classes" attribute values to remove from
458 all elements in the document tree.
459 The command line option may be used more than once.
461 .. WARNING:: Potentially dangerous; use with caution.
463 Default: disabled (None). Option: ``--strip-class``.
466 Enable the removal of comment elements from the document tree.
468 Default: disabled (None). Options: ``--strip-comments``,
469 ``--leave-comments``.
471 _`strip_elements_with_classes`
472 Comma-separated list of "classes" attribute values;
473 matching elements are removed from the document tree.
474 The command line option may be used more than once.
476 .. WARNING:: Potentially dangerous; use with caution.
478 Default: disabled (None). Option: ``--strip-element-with-class``.
481 The document title as metadata, which does not become part of the
482 document body. It overrides a document-supplied title. For
483 example, in HTML output the metadata document title appears in the
484 title bar of the browser window.
486 Default: none. Option: ``--title``.
489 Enable backlinks from section titles to table of contents entries
490 ("entry"), to the top of the TOC ("top"), or disable ("none").
492 Default: "entry". Options: ``--toc-entry-backlinks,
493 --toc-top-backlinks, --no-toc-backlinks``.
496 Enable Python tracebacks when halt-level system messages and other
497 exceptions occur. Useful for debugging, and essential for issue
498 reports. Exceptions are allowed to propagate, instead of being
499 caught and reported (in a user-friendly way) by Docutils.
501 Default: disabled (None) unless Docutils is run programmatically
502 using the `Publisher Interface`_. Options: ``--traceback,
505 .. _Publisher Interface: ../api/publisher.html
508 Path to a file for the output of system messages (warnings)
511 Default: stderr (None). Options: ``--warnings``.
517 Docutils currently supports only one parser, for reStructuredText.
520 [restructuredtext parser]
521 `````````````````````````
523 _`file_insertion_enabled`
524 Enable or disable directives that insert the contents of external
525 files, such as the "include_" & "raw_". A "warning" system
526 message (including the directive text) is inserted instead. (See
527 also raw_enabled_ for another security-relevant setting.)
529 Default: enabled (1). Options: ``--file-insertion-enabled,
530 --no-file-insertion``.
532 .. _include: ../ref/rst/directives.html#include
533 .. _raw: ../ref/rst/directives.html#raw
536 Recognize and link to standalone PEP references (like "PEP 258").
538 Default: disabled (None); enabled (1) in PEP Reader. Options:
539 ``--pep-references``.
542 Base URL for PEP references.
544 Default: "http://www.python.org/peps/". Option:
547 _`pep_file_url_template`
548 Template for PEP file part of URL, interpolated with the PEP
549 number and appended to pep_base_url_.
551 Default: "pep-%04d". Option: ``--pep-file-url``.
554 Enable or disable the "raw_" directive. A "warning" system
555 message (including the directive text) is inserted instead. (See
556 also file_insertion_enabled_ for another security-relevant
559 Default: enabled (1). Options: ``--raw-enabled, --no-raw``.
562 Recognize and link to standalone RFC references (like "RFC 822").
564 Default: disabled (None); enabled (1) in PEP Reader. Options:
565 ``--rfc-references``.
568 Base URL for RFC references.
570 Default: "http://www.faqs.org/rfcs/". Option: ``--rfc-base-url``.
573 Number of spaces for hard tab expansion.
575 Default: 8. Options: ``--tab-width``.
577 _`trim_footnote_reference_space`
578 Remove spaces before footnote references.
580 Default: don't (None); may be overriden by a writer-specific
581 footnote_references__ default though. Options:
582 ``--trim-footnote-reference-space,
583 --leave-footnote-reference-space``.
585 __ `footnote_references [latex2e writer]`_
590 Token type names used by Pygments_ when parsing contents of the code_
596 Use hierarchy of long token type names.
598 Use short token type names. (For use with
599 `Pygments-generated stylesheets`_.)
601 No code parsing. Use this to avoid the "Pygments not
602 found" warning when Pygments is not installed.
604 Default: "short". Option: ``--syntax-highlight``.
606 .. _Pygments: http://pygments.org/
607 .. _code: ../ref/rst/directives.html#code
608 .. _Pygments-generated stylesheets:
609 http://pygments.org/docs/cmdline/#generating-styles
620 Enable or disable the bibliographic field list transform
621 (docutils.transforms.frontmatter.DocInfo).
623 Default: enabled (1). Options: ``--no-doc-info``.
626 Enable or disable the promotion of a lone top-level section title
627 to document title (and subsequent section title to document
628 subtitle promotion; docutils.transforms.frontmatter.DocTitle).
630 Default: enabled (1). Options: ``--no-doc-title``.
632 _`sectsubtitle_xform`
634 Enable or disable the promotion of the title of a lone subsection
635 to a subtitle (docutils.transforms.frontmatter.SectSubTitle).
637 Default: disabled (0). Options: ``--section-subtitles,
638 --no-section-subtitles``.
644 The `pep_references`_ and `rfc_references`_ settings
645 (`[restructuredtext parser]`_) are set on by default.
657 [docutils_xml writer]
658 `````````````````````
662 * In versions older than 2.7.3 and 3.2.3, the newlines_ and indents_
663 options may adversely affect whitespace; use them only for reading
664 convenience (see http://bugs.python.org/issue4147).
666 * The XML declaration carries text encoding information, without which
667 standard tools may be unable to read the generated XML.
669 _`doctype_declaration`
670 Generate XML with a DOCTYPE declaration.
672 Default: do (1). Options: ``--no-doctype``.
675 Generate XML with indents and newlines.
677 Default: don't (None). Options: ``--indents``.
680 Generate XML with newlines before and after tags.
682 Default: don't (None). Options: ``--newlines``.
684 .. _xml_declaration [docutils_xml writer]:
687 Generate XML with an XML declaration. Also defined for the
690 Default: do (1). Options: ``--no-xml-declaration``.
692 __ `xml_declaration [html4css1 writer]`_
698 .. _attribution [html4css1 writer]:
701 Format for block quote attributions: one of "dash" (em-dash
702 prefix), "parentheses"/"parens", or "none". Also defined for the
705 Default: "dash". Options: ``--attribution``.
707 __ `attribution [latex2e writer]`_
709 _`cloak_email_addresses`
710 Scramble email addresses to confuse harvesters. In the reference
711 URI, the "@" will be replaced by %-escapes (as of RFC 1738). In
712 the visible text (link text) of an email reference, the "@" and
713 all periods (".") will be surrounded by ``<span>`` tags.
714 Furthermore, HTML entities are used to encode these characters in
715 order to further complicate decoding the email address. For
716 example, "abc@example.org" will be output as::
718 <a class="reference" href="mailto:abc%40example.org">
719 abc<span>@</span>example<span>.</span>org</a>
721 .. Note:: While cloaking email addresses will have little to no
722 impact on the rendering and usability of email links in most
723 browsers, some browsers (e.g. the ``links`` browser) may decode
724 cloaked email addresses incorrectly.
726 Default: don't cloak (None). Option: ``--cloak-email-addresses``.
729 Remove extra vertical whitespace between items of bullet lists and
730 enumerated lists, when list items are all "simple" (i.e., items
731 each contain one paragraph and/or one "simple" sublist only). The
732 behaviour can be specified directly via "class" attributes (values
733 "compact" and "open") in the document.
735 Default: enabled (1). Options: ``--compact-lists,
736 --no-compact-lists``.
738 _`compact_field_lists`
739 Remove extra vertical whitespace between items of field lists that
740 are "simple" (i.e., all field bodies each contain at most one
741 paragraph). The behaviour can be specified directly via "class"
742 attributes (values "compact" and "open") in the document.
744 Default: enabled (1). Options: ``--compact-field-lists,
745 --no-compact-field-lists``.
747 .. _embed_stylesheet [html4css1 writer]:
750 Embed the stylesheet in the output HTML file. The stylesheet file
751 must specified by the stylesheet_path__ setting and must be
752 accessible during processing.
753 Also defined for the `LaTeX Writer`__.
755 Default: enabled. Options: ``--embed-stylesheet,
758 __ `stylesheet_path [html4css1 writer]`_
759 __ `embed_stylesheet [latex2e writer]`_
762 The maximum width (in characters) for one-column field names.
763 Longer field names will span an entire row of the table used to
764 render the field list. 0 indicates "no limit". See also
767 Default: 14 characters. Option: ``--field-name-limit``.
769 .. _footnote_references [html4css1 writer]:
772 Format for footnote references, one of "superscript" or
773 "brackets". Also defined for the `LaTeX Writer`__.
775 Overrides [#override]_ trim_footnote_reference_space_, if
776 applicable. [#footnote_space]_
778 Default: "brackets". Option: ``--footnote-references``.
780 __ `footnote_references [latex2e writer]`_
782 _`initial_header_level`
783 The initial level for header elements. This does not affect the
784 document title & subtitle; see doctitle_xform_.
786 Default: 1 (for "<h1>"). Option: ``--initial-header-level``.
789 The format of mathematical content (`math directive`_ and role) in
790 the output document. Supported values are (case insensitive):
793 Format math for display with MathJax_, a JavaScript-based math
794 rendering engine that uses HTML/CSS, JavaScript, and unicode
795 fonts for high-quality typesetting that is scalable and prints
799 Works 'out of the box' across multiple browsers and platforms.
801 Supports a large subset of LaTeX math commands and constructs
802 (see http://www.mathjax.org/docs/1.1/tex.html).
805 Requires an Internet connection or a local MathJax
809 Format math in standard HTML enhanced by CSS rules
811 Requires the ``math.css`` stylesheet (stored in the same
812 installation-dependent directory as the `default stylesheet`__).
814 .. __: `stylesheet_path [html4css1 writer]`_
817 Embed math content as presentational MathML_.
820 The W3C recommendation for math on the web.
822 Self-contained documents (no JavaScript, no external downloads).
825 Docutil's latex2mathml converter supports only a small
826 subset of LaTeX syntax.
828 With the "html4css1" writer, the resulting HTML document does
829 not validate, as there is no DTD for MathML + XHTML
830 Transitional. However, MathML-enabled browsers will render it
834 Include literal LaTeX code.
836 The failsave fallback.
838 Default: MathJax Option: ``--math-output``.
842 .. _math directive: ../ref/rst/directives.html#math
843 .. _MathJax: http://www.mathjax.org/
844 .. _MathPlayer: http://www.dessci.com/en/products/mathplayer/
845 .. _MathML: http://www.w3.org/TR/MathML/
848 The maximum width (in characters) for options in option lists.
849 Longer options will span an entire row of the table used to render
850 the option list. 0 indicates "no limit". See also
853 Default: 14 characters. Option: ``--option-limit``.
855 .. _stylesheet [html4css1 writer]:
858 A comma-separated list of CSS stylesheet URLs, used verbatim.
859 Also defined for the `LaTeX Writer`__.
861 Overrides also stylesheet-path__. [#override]_
863 Default: None. Options: ``--stylesheet``.
865 __ `stylesheet [latex2e writer]`_
866 __ `stylesheet_path [html4css1 writer]`_
868 .. _stylesheet_path [html4css1 writer]:
871 A comma-separated list of paths [#pwd]_ to CSS stylesheets.
872 If embed_stylesheet__ is False, paths are rewritten relative to the
873 output HTML file. Also defined for the `LaTeX Writer`__.
875 Also overrides "stylesheet". [#override]_
876 Pass an empty string (to either "stylesheet" or "stylesheet_path") to
877 deactivate stylesheet inclusion.
879 Default: "html4css1.css" in the docutils/writers/html4css1/
880 directory (installed automatically; for the exact machine-specific
881 path, use the ``--help`` option). Options: ``--stylesheet-path``.
883 __ `embed_stylesheet [html4css1 writer]`_
884 __ `stylesheet_path [latex2e writer]`_
886 .. _table_style [html4css1 writer]:
889 Added to standard table classes to allow styling with CSS.
890 The default sylesheet defines:
893 no borders around the table.
896 a line above and below the table and one after the head.
898 Default: "". Option: ``--table-style``.
900 .. _template [html4css1 writer]:
903 Path to template file, which must be encoded in UTF-8 [#pwd]_.
904 Also defined for the `LaTeX Writer`__.
906 Default: "template.txt" in the docutils/writers/html4css1/
907 directory (installed automatically; for the exact machine-specific
908 path, use the ``--help`` option). Options: ``--template``.
910 __ `template [latex2e writer]`_
912 .. _xml_declaration [html4css1 writer]:
915 Generate XML with an XML declaration. Also defined for the
916 `Docutils XML Writer`__.
918 .. Caution:: The XML declaration carries text encoding
919 information, without which standard tools may be unable to read
922 Default: do (1). Options: ``--no-xml-declaration``.
924 __ `xml_declaration [docutils_xml writer]`_
930 The PEP/HTML Writer derives from the standard HTML Writer, and shares
931 all settings defined in the `[html4css1 writer]`_ section. The
932 "[html4css1 writer]" section of configuration files is processed
933 before the "[pep_html writer]" section.
936 Do not use a random banner image. Mainly used to get predictable
937 results when testing.
939 Default: random enabled (None). Options: ``--no-random``
943 Home URL prefix for PEPs.
945 Default: current directory ("."). Options: ``--pep-home``.
950 Default: parent directory (".."). Options: ``--python-home``.
952 The PEP/HTML Writer's default for the following settings differ from
953 those of the standard HTML Writer:
955 * ``stylesheet_path``: The default is
956 ``docutils/writers/pep_html/pep.css`` in the installation directory.
957 For the exact machine-specific path, use the ``--help`` option.
959 * ``template``: The default is
960 ``docutils/writers/pep_html/template.txt`` in the installation
961 directory. For the exact machine-specific path, use the ``--help``
968 The S5/HTML Writer derives from the standard HTML Writer, and shares
969 all settings defined in the `[html4css1 writer]`_ section. The
970 "[html4css1 writer]" section of configuration files is processed
971 before the "[s5_html writer]" section.
974 Auto-hide the presentation controls in slideshow mode, or or keep
975 them visible at all times.
977 Default: auto-hide (1). Options: ``--hidden-controls``,
978 ``--visible-controls``.
981 Enable or disable the current slide indicator ("1/15").
983 Default: disabled (None). Options: ``--current-slide``,
984 ``--no-current-slide``.
986 _`overwrite_theme_files`
987 Allow or prevent the overwriting of existing theme files in the
988 ``ui/<theme>`` directory. This has no effect if "theme_url_" is
991 Default: keep existing theme files (None). Options:
992 ``--keep-theme-files``, ``--overwrite-theme-files``.
995 Name of an installed S5 theme, to be copied into a ``ui/<theme>``
996 subdirectory, beside the destination file (output HTML). Note
997 that existing theme files will not be overwritten; the existing
998 theme directory must be deleted manually.
999 Also overrides the "theme_url_" setting. [#override]_
1001 Default: "default". Option: ``--theme``.
1004 The URL of an S5 theme directory. The destination file (output
1005 HTML) will link to this theme; nothing will be copied. Also overrides
1006 the "theme_" setting. [#override]_
1008 Default: None. Option: ``--theme-url``.
1011 The initial view mode, either "slideshow" or "outline".
1013 Default: "slidewhow". Option: ``--view-mode``.
1015 The S5/HTML Writer's default for the following settings differ
1016 from those of the standard HTML Writer:
1018 * ``compact_lists``: The default here is to disable compact lists.
1020 * ``template``: The default is
1021 ``docutils/writers/s5_html/template.txt`` in the installation
1022 directory. For the exact machine-specific path, use the ``--help``
1030 To get pagenumbers in the table of contents the table of contents
1031 must be generated by LaTeX. Usually latex must be run twice to get
1034 Default: on. Options: ``--use-latex-toc, --use-docutils-toc``.
1036 _`use_latex_docinfo`
1037 Attach author and date to the document title
1038 instead of the document info table.
1040 Default: off. Options: ``--use-latex-docinfo, --use-docutils-docinfo``
1042 _`docutils_footnotes`
1043 Use the Docutils-specific macros ``\DUfootnote`` and
1044 ``\DUfootnotetext`` for footnotes.
1046 Default: on. Option: ``--docutils-footnotes``.
1048 _`use_latex_footnotes`
1049 Backwards-compatibility alias for docutils_footnotes_ (deprecated).
1051 *Note*: the planned new option _`latex_footnotes` will use the
1052 ``\footnote`` command and footnote numbering by LaTeX.
1055 Typeset footnote text in a figure float.
1056 This may lead to footnotes, citations, and figures being
1059 *Deprecated:* This setting will be removed in a future Docutils
1062 Default: off. Option: ``--figure-footnotes``.
1064 _`use_latex_citations`
1065 Use \cite for citations instead of a simulation with figure-floats.
1067 Default: off. Options: ``--use-latex-citations, --figure-citations``.
1069 _`use_latex_abstract`
1070 Use LaTeX abstract environment for the document's abstract.
1072 Default: off. Options: ``--use-latex-abstract, --topic-abstract``.
1075 Color of any hyperlinks embedded in text.
1077 * "0" or "false" disable coloring of links. (Links will be marked
1078 by red boxes that are not printed),
1079 * "black" results in “invisible“ links,
1081 Set hyperref_options_ to "draft" to completely disable
1084 Default: "blue". Option: ``--hyperlink-color``.
1087 Options for the `hyperref TeX package`_. If hyperlink_color_ is
1088 not "false", the expansion of ::
1090 'colorlinks=true,linkcolor=%s,urlcolor=%s' % (
1091 hyperlink_color, self.hyperlink_color
1093 is prepended. For documents typeset in Cyrillic script,
1094 ``--hyperref-options=unicode`` is recommended.
1096 Default: "". Option: ``--hyperref-options``.
1098 .. _hyperref TeX package: http://tug.org/applications/hyperref/
1101 Specify latex documentclass.
1103 Default: "article". Option: ``--documentclass``.
1106 Specify document options. Multiple options can be given, separated by
1109 Default: "a4paper". Option: ``--documentoptions``.
1112 Specify LaTeX font encoding. Multiple options can be given, separated
1113 by commas. Possible values are "", "T1", "OT1", "LGR,T1" or any other
1114 combination of `LaTeX font encodings`_.
1116 Default: "T1". Option: ``--font-encoding``.
1118 .. _LaTeX font encodings:
1119 http://mirror.ctan.org/macros/latex/doc/encguide.pdf
1121 .. _embed_stylesheet [latex2e writer]:
1124 Embed the stylesheet(s) in the header of the output file. The
1125 stylesheets must be accessible during processing. Currently, this
1126 fails if the file is not available via the given path (i.e. the
1127 file is *not* searched in the `TeX input path`_).
1128 Also defined for the `HTML Writer`__ (with default *on*).
1130 Default: off. Options: ``--embed-stylesheet, --link-stylesheet``.
1132 __ `embed_stylesheet [html4css1 writer]`_
1134 .. _stylesheet [latex2e writer]:
1137 A comma-separated list of style files.
1138 Also defined for the `HTML Writer`__.
1140 Overrides also stylesheet_path__. [#override]_
1142 If `embed_stylesheet`__ is False (default), the stylesheet files are
1143 referenced with ``\usepackage`` (extension ``.sty`` or no extension) or
1144 ``\input`` (any other extension).
1146 LaTeX will search the specified files in the `TeX input path`_.
1148 Default: no stylesheet (""). Option: ``--stylesheet``.
1150 __ `stylesheet_path [latex2e writer]`_
1151 __ `embed_stylesheet [latex2e writer]`_
1152 __ `stylesheet [html4css1 writer]`_
1154 http://www.tex.ac.uk/cgi-bin/texfaq2html?label=what-TDS
1157 .. _stylesheet_path [latex2e writer]:
1160 Similar to stylesheet__, however paths [#pwd]_ are rewritten relative to
1161 the output file (if there is a common part in the given path and the
1162 output file path). Also defined for the `HTML Writer`__.
1164 Run ``latex`` from the directory containing the output file. Fails for
1165 files in the TEXINPUTS path; use stylesheet__ in this case.
1167 Also overrides stylesheet__. [#override]_
1169 Default: no stylesheet (""). Option: ``--stylesheet-path``.
1171 __ `stylesheet [latex2e writer]`_
1172 __ `stylesheet_path [html4css1 writer]`_
1174 __ `stylesheet [latex2e writer]`_
1178 LaTeX code that will be inserted in the document preamble.
1179 Can be used to load packages with options or (re-) define LaTeX
1180 macros without writing a custom style file (new in Docutils 0.7).
1182 Default: Load the "PDF standard fonts" (Times, Helvetica,
1185 \usepackage{mathptmx} % Times
1186 \usepackage[scaled=.90]{helvet}
1187 \usepackage{courier}
1189 Option: ``--latex-preamble``
1192 .. _template [latex2e writer]:
1195 Path to template file, which must be encoded in UTF-8 [#pwd]_.
1196 Also defined for the `HTML Writer`__.
1198 Default: "default.tex" in the docutils/writers/latex2e/
1199 directory (installed automatically; for the exact machine-specific
1200 path, use the ``--help`` option). Options: ``--template``.
1202 __ `template [html4css1 writer]`_
1204 .. _footnote_references [latex2e writer]:
1207 Format for footnote references: one of "superscript" or
1208 "brackets". Also defined for the `HTML Writer`__.
1210 Overrides [#override]_ trim_footnote_reference_space_, if
1211 applicable [#footnote_space]_.
1213 Default: "superscript". Option: ``--footnote-references``.
1215 __ `footnote_references [html4css1 writer]`_
1217 .. _attribution [latex2e writer]:
1220 Format for block quote attributions, the same as for the
1221 html-writer: one of "dash" (em-dash prefix),
1222 "parentheses"/"parens" or "none". Also defined for the `HTML
1225 Default: "dash". Option: ``--attribution``.
1227 __ `attribution [html4css1 writer]`_
1229 _`compound_enumerators`
1230 Enable or disable compound enumerators for nested enumerated lists
1233 Default: disabled (None). Options: ``--compound-enumerators``,
1234 ``--no-compound-enumerators``.
1236 _`literal_block_env`
1237 When possibile\ [#]_, use the specified environment for literal-blocks.
1239 Default: "" (quoting of whitespace and special chars)
1240 Option: ``--literal-block-env``
1242 .. [#] A literal-block element, when processed by a Docutils writer might
1243 have it's origin in a markup with "::" syntax or a "..
1244 parsed-literal::" directive.
1246 A LaTeX verbatim environment is only usable if there is no other
1247 markup contained in the literal-block.
1250 _`section_prefix_for_enumerators`
1251 Enable or disable section ("." subsection ...) prefixes for
1252 compound enumerators. This has no effect unless
1253 `compound_enumerators`_ are enabled.
1255 Default: disabled (None). Options:
1256 ``--section-prefix-for-enumerators``,
1257 ``--no-section-prefix-for-enumerators``.
1259 _`section_enumerator_separator`
1260 The separator between section number prefix and enumerator for
1261 compound enumerated lists (see `compound_enumerators`_).
1263 Generally it isn't recommended to use both sub-sections and nested
1264 enumerated lists with compound enumerators. This setting avoids
1265 ambiguity in the situation where a section "1" has a list item
1266 enumerated "1.1", and subsection "1.1" has list item "1". With a
1267 separator of ".", these both would translate into a final compound
1268 enumerator of "1.1.1". With a separator of "-", we get the
1269 unambiguous "1-1.1" and "1.1-1".
1271 Default: "-". Option: ``--section-enumerator-separator``.
1273 .. _table_style [latex2e writer]:
1276 Specify the drawing of separation lines.
1280 lines around and between cells.
1282 a line above and below the table and one after the head.
1286 Default: "standard". Option: ``--table-style``.
1291 The xetex writer derives from the latex2e writer, and shares
1292 all settings defined in the `[latex2e writer]`_ section. The
1293 "[latex2e writer]" section of configuration files is processed
1294 before the "[xetex writer]" section.
1296 The following settings differ from those of the latex2e writer:
1299 Disabled as XeTeX uses Unicode-encoded fonts.
1301 .. _latex_preamble [xetex writer]:
1304 LaTeX code that will be inserted in the document preamble.
1307 Font setup for `Linux Libertine`_,::
1309 % Linux Libertine (free, wide coverage, not only for Linux)
1310 \setmainfont{Linux Libertine O}
1311 \setsansfont{Linux Biolinum O}
1312 \setmonofont[HyphenChar=None]{DejaVu Sans Mono}
1314 The optional argument ``HyphenChar=None`` to the monospace font
1315 prevents word hyphenation in literal text.
1318 Option: ``--latex-preamble``
1320 .. _Linux Libertine: http://www.linuxlibertine.org/
1322 .. _template [xetex writer]:
1325 Path to template file.
1327 Default: "xelatex.tex" in the ``docutils/writers/latex2e/``
1328 directory (installed automatically; for the exact machine-specific
1329 path, use the ``--help`` option). Options: ``--template``.
1335 No settings are defined for this Writer.
1341 [buildhtml application]
1342 ```````````````````````
1345 List of wildcard (shell globing) patterns, specifying files to
1346 silently ignore. To specify multiple patterns, use
1347 colon-separated patterns (in configuration files or on the command
1348 line); on the command line, the option may also be used more than
1351 Default: none ([]). Options: ``--ignore``.
1354 List of directories not to process. To specify multiple
1355 directories, use colon-separated paths (in configuration files or
1356 on the command line); on the command line, the option may also be
1357 used more than once.
1359 Default: ['.hg', '.bzr', '.git', '.svn', 'CVS']. Options:
1363 Recursively scan subdirectories, or ignore subdirectories.
1365 Default: recurse (1). Options: ``--recurse, --local``.
1368 Work silently (no progress messages). Independent of
1371 Default: show progress (None). Options: ``--silent``.
1374 [docfactory application]
1375 ````````````````````````
1386 These settings are only effective as command-line options; setting
1387 them in configuration files has no effect.
1390 Path to a configuration file to read (if it exists) [#pwd]_.
1391 Settings may override defaults and earlier settings. The config
1392 file is processed immediately. Multiple ``--config`` options may
1393 be specified; each will be processed in turn.
1395 Filesystem path settings contained within the config file will be
1396 interpreted relative to the config file's location (*not* relative
1397 to the current working directory).
1399 Default: None. Options: ``--config``.
1405 These settings are for internal use only; setting them in
1406 configuration files has no effect, and there are no corresponding
1407 command-line options.
1410 List of paths of applied configuration files.
1412 Default: None. No command-line options.
1415 (``buildhtml.py`` front end.) List of paths to source
1416 directories, set from positional arguments.
1418 Default: current working directory (None). No command-line
1422 Prevent standard configuration files from being read. For
1423 programmatic use only.
1425 Default: config files enabled (None). No command-line options.
1428 Path to output destination, set from positional arguments.
1430 Default: stdout (None). No command-line options.
1433 Path to input source, set from positional arguments.
1435 Default: stdin (None). No command-line options.
1438 .. _language tag: http://www.w3.org/International/articles/language-tags/
1439 .. _BCP 47: http://www.rfc-editor.org/rfc/bcp/bcp47.txt
1440 .. _ISO 639: http://www.loc.gov/standards/iso639-2/php/English_list.php
1441 .. _ISO 3166: http://www.iso.ch/iso/en/prods-services/iso3166ma/
1442 02iso-3166-code-lists/index.html
1444 .. [#pwd] Path relative to the working directory of the process at
1447 .. [#override] The overridden setting will automatically be set to
1448 ``None`` for command-line options and config file settings. Client
1449 programs which specify defaults that override other settings must
1450 do the overriding explicitly, by assigning ``None`` to the other
1453 .. [#dependencies] Images are only added to the dependency list if the
1454 reStructuredText parser extracted image dimensions from the file.
1456 .. [#footnote_space] The footnote space is trimmed if the reference
1457 style is "superscript", and it is left if the reference style is
1460 The overriding only happens if the parser supports the
1461 trim_footnote_reference_space option.
1464 ------------------------------
1465 Old-Format Configuration Files
1466 ------------------------------
1468 Formerly, Docutils configuration files contained a single "[options]"
1469 section only. This was found to be inflexible, and in August 2003
1470 Docutils adopted the current component-based configuration file
1471 sections as described above. Docutils will still recognize the old
1472 "[options]" section, but complains with a deprecation warning.
1474 To convert existing config files, the easiest way is to change the
1475 section title: change "[options]" to "[general]". Most settings
1476 haven't changed. The only ones to watch out for are these:
1478 ===================== =====================================
1479 Old-Format Setting New Section & Setting
1480 ===================== =====================================
1481 pep_stylesheet [pep_html writer] stylesheet
1482 pep_stylesheet_path [pep_html writer] stylesheet_path
1483 pep_template [pep_html writer] template
1484 ===================== =====================================