Re: [Doxygen-users] Unable to include bullet list in brief paragraph
Brought to you by:
dimitri
From: John K. <jko...@ex...> - 2013-10-23 15:10:18
|
Thanks to all for their suggestions. I finally got the results I wanted by using the following: /** * <summary> * <em>Purpose:</em> * <list type="bullet"> * <item>Item 1.</item> * <item>Item 2.</item> * <item>Item 3.</item> * </list> * </summary> * * Lots of detailed description goes here . . . */ -- john From: Ron Wilson [mailto:ron...@gm...] Sent: Wednesday, October 23, 2013 07:10 To: doxygen-users Subject: Re: [Doxygen-users] Unable to include bullet list in brief paragraph > From: John Koehring <jkoehring@ex...> - 2013-10-22 01:25 > I am using Doxygen 1.8.5 on Windows 7 and am trying to include > a bullet list in a brief paragraph for a C++ class. I want the brief > paragraph, including the list, to be displayed in the Class List and > at the top of the Class Reference page. Have you tried setting the MULTILINE_CPP_IS_BRIEF option in your doxygen configuration? But that might not work. List mark-up is likely considered paragraph mark-up, so might end the @brief section. |