Skip to content

Commit

Permalink
Merge branch 'populate-inc-textnode-data-field' of github.com:jdknigh…
Browse files Browse the repository at this point in the history
…t/breathe

#828
  • Loading branch information
vermeeren committed Jun 20, 2022
2 parents ed7b63b + 83ac72e commit 773ed43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion breathe/renderer/sphinxrenderer.py
Original file line number Diff line number Diff line change
Expand Up @@ -1747,7 +1747,7 @@ def visit_inc(self, node: compoundsuper.incType) -> List[Node]:
if not self.app.config.breathe_show_include:
return []

compound_link: List[Node] = [nodes.Text("", node.content_[0].getValue())]
compound_link: List[Node] = [nodes.Text(node.content_[0].getValue())]
if node.get_refid():
compound_link = self.visit_docreftext(node)
if node.local == "yes":
Expand Down

0 comments on commit 773ed43

Please sign in to comment.