diff options
author | gbrandl <gbrandl@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2007-07-12 12:13:45 +0000 |
---|---|---|
committer | gbrandl <gbrandl@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2007-07-12 12:13:45 +0000 |
commit | 3537e69f634aafd536522481a1d599caad5574d3 (patch) | |
tree | fd73c786af1eb13ac6e8e51d764a12dd0afcdc23 /sandbox/py-rest-doc/sphinx/addnodes.py | |
parent | 86ae318c4738f896086c47c3e68921f91ff527ea (diff) | |
download | docutils-3537e69f634aafd536522481a1d599caad5574d3.tar.gz |
Add refcount handling to the builder.
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk@5345 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
Diffstat (limited to 'sandbox/py-rest-doc/sphinx/addnodes.py')
-rw-r--r-- | sandbox/py-rest-doc/sphinx/addnodes.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sandbox/py-rest-doc/sphinx/addnodes.py b/sandbox/py-rest-doc/sphinx/addnodes.py index d0cfff7c8..bdb13091a 100644 --- a/sandbox/py-rest-doc/sphinx/addnodes.py +++ b/sandbox/py-rest-doc/sphinx/addnodes.py @@ -22,6 +22,9 @@ class desc_parameterlist(nodes.Part, nodes.Inline, nodes.TextElement): pass class desc_parameter(nodes.Part, nodes.Inline, nodes.TextElement): pass class desc_optional(nodes.Part, nodes.Inline, nodes.TextElement): pass +# refcount annotation +class refcount(nodes.emphasis): pass + # \versionadded, \versionchanged, \deprecated class versionmodified(nodes.Admonition, nodes.TextElement): pass |