Doxygen Markdown link to anchor in PDF

Using Doxygen 1.8.6 my main page is Markdown README.md. I would like to be able to reference anchors in the Markdown file, so I did this:

# My Header <a name="my-header"></a>

Check out [my header](#my-header)!

      

This works well in the HTML documentation, but does not work in the generated PDF. Is there a way to make it work in both places?

+3


source to share


1 answer



Have you included the option
PDF_HYPERLINKS = YES


in your doxygen.config?



0


source







All Articles