James Kuyper - 2022-03-01

I have a file names ppToken_lex.cc in which I've inserted a Doxygen
comment containing the following line:

     * 5.1.1.2 \anchor C90_5_1_1_2

As a result, doxygent creates a file named

html/classkuyper_1_1ppToken__lex.html

containing the following line:

5.1.1.2

I also have a mainpage.dox file containing the following lines: \page C90 Citations from the C90 standard ... \refitem C90_5_1_1_2 5.1.1.2 As a result, doxygen creates a file named html/C90.html containing the following line:
  • 5.1.1.2
  • When viewing that html file with firefox, clicking on that link fails, with a message that correctly points out that the file /home/james/repos/eclipse-workspace/MinimalC/delivery/src/ppToken_lex.cc.html does not exist. Why does doxygen create a link to the wrong file? What do I need to change so that doxygen creates a link that can be followed?