GNOME Bugzilla – Bug 584844
\details tag doesn't work unless after a new paragraph
Last modified: 2009-08-20 17:44:55 UTC
The \details tag doesn't work unless preceded by a "new paragraph". This example does not work: /// @brief description here /// @param myParam1 the first param /// @return False if an error was encountered, true otherwise /// @details This is the detailed description. This example does work: /// @brief description here /// @param myParam1 the first param /// @return False if an error was encountered, true otherwise /// /// @details This is the detailed description.
The problem is that the @param command already implicitly ends the brief description and that a @details command outside of a brief description has no effect. I agree it is more logical to treat the @details command as a new paragraph command in such cases, so I'll change that.
This bug was previously marked ASSIGNED, which means it should be fixed in doxygen version 1.6.0. Please verify if this is indeed the case and reopen the bug if you think it is not fixed (include any additional information that you think can be relevant).
The change works for me. Thanks!