Is it possible to include content in the doxygen comment block that doxygen will ignore? In other words, can we have comments in the doxygen comments block?
Background:
We will convert the comments in the code for the Fortran project into a parsable oxygen format, but the project requires that the content of the comments in the code be outlined in horizontal lines. For instance:
!> @brief Lorem ipsum dolor sit amet !! --------------------------------------------------------------------- !! !! @param[in] p1 Description of p1 !! @param[in] p2 Description of p2 !! --------------------------------------------------------------------- !! !! More content here .... !! --------------------------------------------------------------------- !! !! More content for another section !! --------------------------------------------------------------------- subroutine do_something(p1, p2) ! .... the code ... end subroutine do_something
Is there a command / syntax to which I can add these lines so that doxygen ignores them? I hope one that is unobtrusive and does not affect the readability of comments.
I know the INPUT_FILTER settings that can be used for chaining in a preprocessing script, but an ideal solution would be a solution that does not depend on additional scripts / tools.
PS I know well that many find these horizontal lines unnecessary and / or distracting. However, this is a requirement prescribed by the treasurer, and I cannot change it.
source share