summaryrefslogtreecommitdiff
path: root/doc/extdev
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2019-05-21 23:13:41 +0900
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2019-05-26 10:53:53 +0900
commit9b2423c5bb2d1b4067792b4d5823a84984d44139 (patch)
treecd2a0502da574cdf77f67d574a3325597bbe807e /doc/extdev
parent439f32946636c67ce5ce4dfaed799a37632a725f (diff)
downloadsphinx-git-9b2423c5bb2d1b4067792b4d5823a84984d44139.tar.gz
doclinter: restrict by 90 columns
Diffstat (limited to 'doc/extdev')
-rw-r--r--doc/extdev/appapi.rst6
-rw-r--r--doc/extdev/deprecated.rst4
-rw-r--r--doc/extdev/logging.rst4
-rw-r--r--doc/extdev/markupapi.rst4
4 files changed, 10 insertions, 8 deletions
diff --git a/doc/extdev/appapi.rst b/doc/extdev/appapi.rst
index bb4994909..7a8ffef10 100644
--- a/doc/extdev/appapi.rst
+++ b/doc/extdev/appapi.rst
@@ -147,9 +147,9 @@ Sphinx core events
------------------
These events are known to the core. The arguments shown are given to the
-registered event handlers. Use :meth:`.Sphinx.connect` in an extension's ``setup``
-function (note that ``conf.py`` can also have a ``setup`` function) to connect
-handlers to the events. Example:
+registered event handlers. Use :meth:`.Sphinx.connect` in an extension's
+``setup`` function (note that ``conf.py`` can also have a ``setup`` function) to
+connect handlers to the events. Example:
.. code-block:: python
diff --git a/doc/extdev/deprecated.rst b/doc/extdev/deprecated.rst
index 569e0a3d9..38fae288c 100644
--- a/doc/extdev/deprecated.rst
+++ b/doc/extdev/deprecated.rst
@@ -1071,7 +1071,9 @@ The following is a list of deprecated interfaces.
* - ``sphinx.websupport``
- 1.6
- 2.0
- - `sphinxcontrib-websupport <https://pypi.org/project/sphinxcontrib-websupport/>`_
+ - `sphinxcontrib-websupport`_
+
+ .. _sphinxcontrib-websupport: https://pypi.org/project/sphinxcontrib-websupport/
* - ``StandaloneHTMLBuilder.css_files``
- 1.6
diff --git a/doc/extdev/logging.rst b/doc/extdev/logging.rst
index b66f11dbb..e6c4dc66d 100644
--- a/doc/extdev/logging.rst
+++ b/doc/extdev/logging.rst
@@ -56,8 +56,8 @@ Logging API
:meth:`SphinxLoggerAdapter.warning`.
**color**
- The color of logs. By default, info and verbose level logs are not colored,
- and debug level ones are colored as ``"darkgray"``.
+ The color of logs. By default, info and verbose level logs are not
+ colored, and debug level ones are colored as ``"darkgray"``.
.. autofunction:: pending_logging()
diff --git a/doc/extdev/markupapi.rst b/doc/extdev/markupapi.rst
index fc25c2327..7a21f8126 100644
--- a/doc/extdev/markupapi.rst
+++ b/doc/extdev/markupapi.rst
@@ -138,8 +138,8 @@ Both APIs parse the content into a given node. They are used like this::
.. deprecated:: 1.7
- Until Sphinx-1.6, ``sphinx.ext.autodoc.AutodocReporter`` is used for this purpose.
- For now, it is replaced by ``switch_source_input()``.
+ Until Sphinx-1.6, ``sphinx.ext.autodoc.AutodocReporter`` is used for this
+ purpose. For now, it is replaced by ``switch_source_input()``.
If you don't need the wrapping node, you can use any concrete node type and
return ``node.children`` from the Directive.