diff options
| author | Adam Turner <9087854+aa-turner@users.noreply.github.com> | 2022-09-30 16:15:24 +0100 |
|---|---|---|
| committer | Adam Turner <9087854+aa-turner@users.noreply.github.com> | 2022-09-30 16:15:24 +0100 |
| commit | 63dea6172aa3d5351a80085b9bebf02985c267e5 (patch) | |
| tree | 658c42a4e346db41f464ebdd68990dc8d977fc97 /doc/usage | |
| parent | bb62d2a2ee7d6d4b79b269c837ebf8d57aee0795 (diff) | |
| parent | 29060711984f9ad6be210d9a237a5f5cd5bce5c9 (diff) | |
| download | sphinx-git-63dea6172aa3d5351a80085b9bebf02985c267e5.tar.gz | |
Merge branch '5.x'
# Conflicts:
# sphinx/locale/__init__.py
Diffstat (limited to 'doc/usage')
| -rw-r--r-- | doc/usage/configuration.rst | 5 | ||||
| -rw-r--r-- | doc/usage/restructuredtext/domains.rst | 46 |
2 files changed, 43 insertions, 8 deletions
diff --git a/doc/usage/configuration.rst b/doc/usage/configuration.rst index 1071c9377..c18c2d317 100644 --- a/doc/usage/configuration.rst +++ b/doc/usage/configuration.rst @@ -678,6 +678,11 @@ General configuration :term:`object` names (for object types where a "module" of some kind is defined), e.g. for :rst:dir:`py:function` directives. Default is ``True``. +.. confval:: toc_object_entries + + Create table of contents entries for domain objects (e.g. functions, classes, + attributes, etc.). Default is ``True``. + .. confval:: toc_object_entries_show_parents A string that determines how domain objects (e.g. functions, classes, diff --git a/doc/usage/restructuredtext/domains.rst b/doc/usage/restructuredtext/domains.rst index d5720877b..cd7091763 100644 --- a/doc/usage/restructuredtext/domains.rst +++ b/doc/usage/restructuredtext/domains.rst @@ -42,11 +42,15 @@ Basic Markup Most domains provide a number of :dfn:`object description directives`, used to describe specific objects provided by modules. Each directive requires one or more signatures to provide basic information about what is being described, and -the content should be the description. A domain will typically keep an -internal index of all entities to aid cross-referencing. Typically it will -also add entries in the shown general index. +the content should be the description. + +A domain will typically keep an internal index of all entities to aid +cross-referencing. +Typically it will also add entries in the shown general index. If you want to suppress the addition of an entry in the shown index, you can give the directive option flag ``:noindexentry:``. +If you want to exclude the object description from the table of contents, you +can give the directive option flag ``:nocontentsentry:``. If you want to typeset an object description, without even making it available for cross-referencing, you can give the directive option flag ``:noindex:`` (which implies ``:noindexentry:``). @@ -57,6 +61,10 @@ options. The directive option ``noindexentry`` in the Python, C, C++, and Javascript domains. +.. versionadded:: 5.2.3 + The directive option ``:nocontentsentry:`` in the Python, C, C++, Javascript, + and reStructuredText domains. + An example using a Python domain directive:: .. py:function:: spam(eggs) @@ -851,15 +859,19 @@ Example:: This will be rendered as: .. c:struct:: Data + :nocontentsentry: :noindexentry: .. c:union:: @data + :nocontentsentry: :noindexentry: .. c:var:: int a + :nocontentsentry: :noindexentry: .. c:var:: double b + :nocontentsentry: :noindexentry: Explicit ref: :c:var:`Data.@data.a`. Short-hand ref: :c:var:`Data.a`. @@ -942,9 +954,11 @@ Inline Expressions and Types will be rendered as follows: .. c:var:: int a = 42 + :nocontentsentry: :noindexentry: .. c:function:: int f(int i) + :nocontentsentry: :noindexentry: An expression: :c:expr:`a * f(a)` (or as text: :c:texpr:`a * f(a)`). @@ -1155,23 +1169,27 @@ visibility statement (``public``, ``private`` or ``protected``). The example are rendered as follows. .. cpp:type:: std::vector<int> MyList - :noindex: + :nocontentsentry: + :noindexentry: A typedef-like declaration of a type. .. cpp:type:: MyContainer::const_iterator - :noindex: + :nocontentsentry: + :noindexentry: Declaration of a type alias with unspecified type. .. cpp:type:: MyType = std::unordered_map<int, std::string> - :noindex: + :nocontentsentry: + :noindexentry: Declaration of a type alias. .. cpp:type:: template<typename T> \ MyContainer = std::vector<T> - :noindex: + :nocontentsentry: + :noindexentry: .. rst:directive:: .. cpp:enum:: unscoped enum declaration .. cpp:enum-struct:: scoped enum declaration @@ -1266,7 +1284,7 @@ Options Some directives support options: -- ``:noindexentry:``, see :ref:`basic-domain-markup`. +- ``:noindexentry:`` and ``:nocontentsentry:``, see :ref:`basic-domain-markup`. - ``:tparam-line-spec:``, for templated declarations. If specified, each template parameter will be rendered on a separate line. @@ -1298,15 +1316,19 @@ Example:: This will be rendered as: .. cpp:class:: Data + :nocontentsentry: :noindexentry: .. cpp:union:: @data + :nocontentsentry: :noindexentry: .. cpp:var:: int a + :nocontentsentry: :noindexentry: .. cpp:var:: double b + :nocontentsentry: :noindexentry: Explicit ref: :cpp:var:`Data::@data::a`. Short-hand ref: :cpp:var:`Data::a`. @@ -1413,11 +1435,13 @@ introduction` instead of a template parameter list:: They are rendered as follows. .. cpp:function:: std::Iterator{It} void advance(It &it) + :nocontentsentry: :noindexentry: A function template with a template parameter constrained to be an Iterator. .. cpp:class:: std::LessThanComparable{T} MySortedContainer + :nocontentsentry: :noindexentry: A class template with a template parameter constrained to be @@ -1448,9 +1472,11 @@ Inline Expressions and Types will be rendered as follows: .. cpp:var:: int a = 42 + :nocontentsentry: :noindexentry: .. cpp:function:: int f(int i) + :nocontentsentry: :noindexentry: An expression: :cpp:expr:`a * f(a)` (or as text: :cpp:texpr:`a * f(a)`). @@ -1764,6 +1790,10 @@ There is a set of directives allowing documenting command-line programs: referenceable by :rst:role:`option` (in the example case, you'd use something like ``:option:`dest_dir```, ``:option:`-m```, or ``:option:`--module```). + .. versionchanged:: 5.3 + + One can cross-reference including an option value: ``:option:`--module=foobar```. + Use :confval:`option_emphasise_placeholders` for parsing of "variable part" of a literal text (similarly to the :rst:role:`samp` role). |
