Skip to content

Commit

Permalink
Merge pull request #7107 from tk0miya/7106_enumerated_nodes_marked_as…
Browse files Browse the repository at this point in the history
…_duplicated

Fix #7106: std domain: enumerated nodes are marked as duplicated
  • Loading branch information
tk0miya committed Feb 9, 2020
2 parents f751ab8 + 3ad137b commit ebb9a9a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGES
Expand Up @@ -92,6 +92,8 @@ Bugs fixed
modifier keys are ignored, which means the feature can interfere with browser
features
* #7090: std domain: Can't assign numfig-numbers for custom container nodes
* #7106: std domain: enumerated nodes are marked as duplicated when extensions
call ``note_explicit_target()``
* #7095: dirhtml: Cross references are broken via intersphinx and ``:doc:`` role

Testing
Expand Down
4 changes: 3 additions & 1 deletion sphinx/transforms/__init__.py
Expand Up @@ -173,7 +173,9 @@ def apply(self, **kwargs: Any) -> None:
domain = self.env.get_domain('std') # type: StandardDomain

for node in self.document.traverse(nodes.Element):
if domain.is_enumerable_node(node) and domain.get_numfig_title(node) is not None:
if (domain.is_enumerable_node(node) and
domain.get_numfig_title(node) is not None and
node['ids'] == []):
self.document.note_implicit_target(node)


Expand Down

0 comments on commit ebb9a9a

Please sign in to comment.