mosra / m.css

A no-nonsense, no-JavaScript CSS framework, site and documentation theme for content-oriented websites
https://mcss.mosra.cz
Other
406 stars 92 forks source link

Show link to files #185

Closed GValiente closed 3 years ago

GValiente commented 3 years ago

Hi!

First of all, thanks a lot for this project, it improves default Doxygen html output a lot.

In this documentation, generated from this, I am not able to link classes with their files, even though Doxygen is already doing it, and even after trying to force add files with:

/**
 * @file
 */

What should I try?

Thanks.

crisluengo commented 3 years ago

You need to add some documentation for each file. If the file is not documented, it is not listed, no page for it is generated, and no links to it can be created.

Use

/**
 * @file
 * One line of documentation for the file is enough.
 */
GValiente commented 3 years ago

It works!

Thanks a lot.