Hi.
I have tried out the first example code snippet from
http://www.stack.nl/~dimitri/doxygen/manual/lists.html.
That code reads like this:
/*!
* A list of events:
* - mouse events
* -# mouse move event
* -# mouse click event\n
* More info about the click event.
* -# mouse double click event
* - keyboard events
* 1. key down event
* 2. key up event
*
* More text here.
*/
And the result should look like this:
"A list of events:
mouse events
mouse move event
mouse click event
More info about the click event.
mouse double click event
keyboard events
key down event
key up event
More text here."
However the actually generated HTML code with Doxygen 1.8.8 reads like
this:
<p></p>
<p>A list of events:</p><ul>
<li>mouse events<ol type="1">
<li>mouse move event</li>
<li>mouse click event<br />
More info about the click event.</li>
<li>mouse double click event</li>
</ol>
</li>
<li>keyboard events 1. key down event 2. key up event</li>
</ul>
<p>More text here. </p>
Obviously Doxygen has only generated an ordered list when using the "-#"
style, but the "1." style seems to be broken.
I am getting the same results with 1.8.7, 1.8.5 and 1.8.3.1 - have not
tested it with any other release than these.
Does this work for you?
Do I have to set any Doxygen options to certain values to make it work?
Markdown support is turned off in my configuration.
Kind regards,
Stefan.
--
--
Exit Games | www.exitgames.com | @exitgames | +49 40 413 596 0
Executive Christof Wegmann, CTO
Trade Registry / Amtsgericht Hamburg, Germany HRB 85991
++ Add Chat: http://j.mp/PhotonChat
++ Start Turnbased: http://j.mp/PhotonTurnbased
++ Unity Networking that just works: http://j.mp/PhotonUnity
++ Follow http://twitter.com/exitgames for Photon announcements
|