summaryrefslogtreecommitdiffstats
path: root/common/sphinxcontrib/bibtex/nodes.py
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2017-08-07 21:58:52 +1000
committerChris Johns <chrisj@rtems.org>2017-08-07 21:58:52 +1000
commitaa4f8e2e436d6c49e1524a4a3fb164b28632d894 (patch)
tree5b7d3e70c2d5640495281b2665212f07bb41b251 /common/sphinxcontrib/bibtex/nodes.py
parentbsp: Optional clock driver shutdown (diff)
downloadrtems-docs-aa4f8e2e436d6c49e1524a4a3fb164b28632d894.tar.bz2
Add the sphinxcontrib.bibtex extension to the repo.
Diffstat (limited to 'common/sphinxcontrib/bibtex/nodes.py')
-rw-r--r--common/sphinxcontrib/bibtex/nodes.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/common/sphinxcontrib/bibtex/nodes.py b/common/sphinxcontrib/bibtex/nodes.py
new file mode 100644
index 0000000..426aed9
--- /dev/null
+++ b/common/sphinxcontrib/bibtex/nodes.py
@@ -0,0 +1,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