mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Restore `versionmodified
` CSS class for versionadded/changed and deprecated
directives.
This commit is contained in:
parent
c5ff9386d6
commit
ddbcb5b611
6
CHANGES
6
CHANGES
@ -13,6 +13,12 @@ Incompatible changes
|
||||
* Removed the ``sphinx.ext.refcounting`` extension -- it is very specific to
|
||||
CPython and has no place in the main distribution.
|
||||
|
||||
Bugs fixed
|
||||
----------
|
||||
|
||||
* Restore ``versionmodified`` CSS class for versionadded/changed and deprecated
|
||||
directives.
|
||||
|
||||
|
||||
Release 1.2 beta3 (released Oct 3, 2013)
|
||||
========================================
|
||||
|
@ -208,9 +208,11 @@ class VersionChange(Directive):
|
||||
content.line = node[0].line
|
||||
content += node[0].children
|
||||
node[0].replace_self(nodes.paragraph('', '', content))
|
||||
node[0].insert(0, nodes.inline('', '%s: ' % text))
|
||||
node[0].insert(0, nodes.inline('', '%s: ' % text,
|
||||
classes=['versionmodified']))
|
||||
else:
|
||||
para = nodes.paragraph('', '', nodes.inline('', '%s.' % text))
|
||||
para = nodes.paragraph('', '',
|
||||
nodes.inline('', '%s.' % text, classes=['versionmodified']))
|
||||
node.append(para)
|
||||
env = self.state.document.settings.env
|
||||
# XXX should record node.source as well
|
||||
|
Loading…
Reference in New Issue
Block a user