source: rtems-docs/common/sphinxcontrib/bibtex/nodes.py @ aa4f8e2

5
Last change on this file since aa4f8e2 was aa4f8e2, checked in by Chris Johns <chrisj@…>, on 08/07/17 at 11:58:52

Add the sphinxcontrib.bibtex extension to the repo.

  • Property mode set to 100644
File size: 336 bytes
Line 
1"""
2    New Doctree Nodes
3    ~~~~~~~~~~~~~~~~~
4
5    .. autoclass:: bibliography
6"""
7
8from docutils import nodes
9
10
11class bibliography(nodes.General, nodes.Element):
12
13    """Node for representing a bibliography. Replaced by a list of
14    citations by
15    :class:`~sphinxcontrib.bibtex.transforms.BibliographyTransform`.
16    """
17    pass
Note: See TracBrowser for help on using the repository browser.