File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ numpydoc_xref_param_type : bool
46
46
Whether to create cross-references for the parameter types in the
47
47
``Parameters ``, ``Other Parameters ``, ``Returns `` and ``Yields ``
48
48
sections of the docstring.
49
- ``True `` by default.
49
+ ``False `` by default.
50
50
numpydoc_xref_aliases : dict
51
51
Mappings to fully qualified paths (or correct ReST references) for the
52
52
aliases/shortcuts used when specifying the types of parameters.
@@ -79,7 +79,6 @@ numpydoc_xref_aliases : dict
79
79
80
80
This option depends on the ``numpydoc_xref_param_type`` option
81
81
being ``True``.
82
-
83
82
numpydoc_xref_ignore : set
84
83
Words not to cross-reference. Most likely, these are common words
85
84
used in parameter type descriptions that may be confused for
@@ -88,7 +87,6 @@ numpydoc_xref_ignore : set
88
87
numpydoc_xref_ignore = {'type', 'optional', 'default'}
89
88
90
89
The default is an empty set.
91
-
92
90
numpydoc_edit_link : bool
93
91
.. deprecated :: edit your HTML template instead
94
92
Original file line number Diff line number Diff line change @@ -197,7 +197,7 @@ def setup(app, get_doc_object_=get_doc_object):
197
197
app .add_config_value ('numpydoc_show_inherited_class_members' , True , True )
198
198
app .add_config_value ('numpydoc_class_members_toctree' , True , True )
199
199
app .add_config_value ('numpydoc_citation_re' , '[a-z0-9_.-]+' , True )
200
- app .add_config_value ('numpydoc_xref_param_type' , True , True )
200
+ app .add_config_value ('numpydoc_xref_param_type' , False , True )
201
201
app .add_config_value ('numpydoc_xref_aliases' , dict (), True )
202
202
app .add_config_value ('numpydoc_xref_ignore' , set (), True )
203
203
You can’t perform that action at this time.
0 commit comments