summaryrefslogtreecommitdiffstats
path: root/common/sphinxcontrib/bibtex/nodes.py
blob: 426aed9fafd8feb122c62d793c3559e494127399 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
"""
    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