user4780495
user4780495

Reputation: 2912

Doxygen: multiple use of section label bug?

I use Doxygen to document my code and I encounter a problem when I use the markdown syntax.

For example, I have two .dox files:

fileABC.dox:

/**
@page abcPage

Header {#abcHeader}
======

abc Text.
*/

fileDEF.dox

/**
@page defPage

Header {#defHeader}
======

def Text.
*/

Which raise the warning:

warning: multiple use of section label 'Header'

and the abcHeader section is not generated.

There is two workaround, but none of them is ok for me:

So, is there another way to use the same section name in several pages, with the Markdown syntax ?

EDIT

This bug has been introduced in version 1.8.7 : View commit

It seems to be more a bug than a new feature or improvement since the setext-syntax (using # instead of ==) does not give a warning when the same section name is used several times.

Upvotes: 0

Views: 1634

Answers (1)

user4780495
user4780495

Reputation: 2912

Bug introduced in version 1.8.7 and resolved in version 1.8.8

Bug description -- fix

Upvotes: 1

Related Questions