mirror of
https://git.rtems.org/rtems-docs/
synced 2025-05-18 04:11:38 +08:00
18 lines
336 B
Python
18 lines
336 B
Python
"""
|
|
New Doctree Nodes
|
|
~~~~~~~~~~~~~~~~~
|
|
|
|
.. autoclass:: bibliography
|
|
"""
|
|
|
|
from docutils import nodes
|
|
|
|
|
|
class bibliography(nodes.General, nodes.Element):
|
|
|
|
"""Node for representing a bibliography. Replaced by a list of
|
|
citations by
|
|
:class:`~sphinxcontrib.bibtex.transforms.BibliographyTransform`.
|
|
"""
|
|
pass
|