Skip to content

Fix reference targets in Sphinx documentation #562

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@

# Add any Sphinx extension module names here, as strings. They can be extensions
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.viewcode']
extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.viewcode',
'sphinx.ext.intersphinx']

# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
Expand Down Expand Up @@ -92,6 +93,13 @@
]


intersphinx_mapping = {
'python': ('https://docs.python.org/3/', None),
'lxml': ('https://lxml.de/apidoc/', None),
'chardet': ('https://chardet.readthedocs.io/en/latest/', None),
}


class CExtMock(object):
"""Required for autodoc on readthedocs.org where you cannot build C extensions."""
def __init__(self, *args, **kwargs):
Expand Down
33 changes: 19 additions & 14 deletions doc/html5lib.filters.rst
Original file line number Diff line number Diff line change
@@ -1,56 +1,61 @@
filters Package
===============

:mod:`base` Module
-------------------
``base`` Module
----------------

.. automodule:: html5lib.filters.base
:members:
:show-inheritance:
:special-members: __init__

:mod:`alphabeticalattributes` Module
------------------------------------
.. autoclass:: html5lib.filters.base.Filter
:members:
:show-inheritance:
:special-members: __init__

``alphabeticalattributes`` Module
---------------------------------

.. automodule:: html5lib.filters.alphabeticalattributes
:members:
:show-inheritance:
:special-members: __init__

:mod:`inject_meta_charset` Module
---------------------------------
``inject_meta_charset`` Module
------------------------------

.. automodule:: html5lib.filters.inject_meta_charset
:members:
:show-inheritance:
:special-members: __init__

:mod:`lint` Module
------------------
``lint`` Module
---------------

.. automodule:: html5lib.filters.lint
:members:
:show-inheritance:
:special-members: __init__

:mod:`optionaltags` Module
--------------------------
``optionaltags`` Module
-----------------------

.. automodule:: html5lib.filters.optionaltags
:members:
:show-inheritance:
:special-members: __init__

:mod:`sanitizer` Module
-----------------------
``sanitizer`` Module
--------------------

.. automodule:: html5lib.filters.sanitizer
:members:
:show-inheritance:
:special-members: __init__

:mod:`whitespace` Module
------------------------
``whitespace`` Module
---------------------

.. automodule:: html5lib.filters.whitespace
:members:
Expand Down
17 changes: 11 additions & 6 deletions doc/html5lib.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,29 +4,34 @@ html5lib Package
.. automodule:: html5lib
:members: __version__

:mod:`constants` Module
-----------------------
``constants`` Module
--------------------

.. automodule:: html5lib.constants
:members:
:show-inheritance:

:mod:`html5parser` Module
-------------------------
``html5parser`` Module
----------------------

.. automodule:: html5lib.html5parser
:members:
:show-inheritance:
:special-members: __init__

:mod:`serializer` Module
------------------------
``serializer`` Module
---------------------

.. automodule:: html5lib.serializer
:members:
:show-inheritance:
:special-members: __init__

.. autoclass:: html5lib.serializer.HTMLSerializer
:members:
:show-inheritance:
:special-members: __init__

Subpackages
-----------

Expand Down
3 changes: 0 additions & 3 deletions doc/html5lib.treeadapters.rst
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
treeadapters Package
====================

:mod:`~html5lib.treeadapters` Package
-------------------------------------

.. automodule:: html5lib.treeadapters
:members:
:show-inheritance:
Expand Down
19 changes: 8 additions & 11 deletions doc/html5lib.treebuilders.rst
Original file line number Diff line number Diff line change
@@ -1,40 +1,37 @@
treebuilders Package
====================

:mod:`treebuilders` Package
---------------------------

.. automodule:: html5lib.treebuilders
:members:
:show-inheritance:
:special-members: __init__

:mod:`base` Module
-------------------
``base`` Module
---------------

.. automodule:: html5lib.treebuilders.base
:members:
:show-inheritance:
:special-members: __init__

:mod:`dom` Module
-----------------
``dom`` Module
--------------

.. automodule:: html5lib.treebuilders.dom
:members:
:show-inheritance:
:special-members: __init__

:mod:`etree` Module
-------------------
``etree`` Module
----------------

.. automodule:: html5lib.treebuilders.etree
:members:
:show-inheritance:
:special-members: __init__

:mod:`etree_lxml` Module
------------------------
``etree_lxml`` Module
---------------------

.. automodule:: html5lib.treebuilders.etree_lxml
:members:
Expand Down
23 changes: 10 additions & 13 deletions doc/html5lib.treewalkers.rst
Original file line number Diff line number Diff line change
@@ -1,48 +1,45 @@
treewalkers Package
===================

:mod:`treewalkers` Package
--------------------------

.. automodule:: html5lib.treewalkers
:members:
:show-inheritance:
:special-members: __init__

:mod:`base` Module
------------------
``base`` Module
---------------

.. automodule:: html5lib.treewalkers.base
:members:
:show-inheritance:
:special-members: __init__

:mod:`dom` Module
-----------------
``dom`` Module
--------------

.. automodule:: html5lib.treewalkers.dom
:members:
:show-inheritance:
:special-members: __init__

:mod:`etree` Module
-------------------
``etree`` Module
----------------

.. automodule:: html5lib.treewalkers.etree
:members:
:show-inheritance:
:special-members: __init__

:mod:`etree_lxml` Module
------------------------
``etree_lxml`` Module
---------------------

.. automodule:: html5lib.treewalkers.etree_lxml
:members:
:show-inheritance:
:special-members: __init__

:mod:`genshi` Module
--------------------
``genshi`` Module
-----------------

.. automodule:: html5lib.treewalkers.genshi
:members:
Expand Down
6 changes: 3 additions & 3 deletions doc/movingparts.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ Tree builders
The parser reads HTML by tokenizing the content and building a tree that
the user can later access. html5lib can build three types of trees:

* ``etree`` - this is the default; builds a tree based on :mod:`xml.etree`,
which can be found in the standard library. Whenever possible, the
accelerated ``ElementTree`` implementation (i.e.
* ``etree`` - this is the default; builds a tree based on
:mod:`xml.etree.ElementTree`, which can be found in the standard library.
Whenever possible, the accelerated ``ElementTree`` implementation (i.e.
``xml.etree.cElementTree`` on Python 2.x) is used.

* ``dom`` - builds a tree based on :mod:`xml.dom.minidom`.
Expand Down
1 change: 1 addition & 0 deletions html5lib/treebuilders/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ def hasContent(self):

class ActiveFormattingElements(list):
def append(self, node):
"""Append node to the end of the list."""
equalCount = 0
if node != Marker:
for element in self[::-1]:
Expand Down