Reputation: 2912
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:
ABC Header
and DEF Header
@section abcHeader Header
So, is there another way to use the same section name in several pages, with the Markdown syntax ?
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