I'm running doxygen 1.8.3.1 under SLED 10.4 (linux), and am trying to document a C header file which contains structs similar to the following:
/** Test struct definition */
typedef struct
{
int member_1; /**< Single-line detailed description */
int member_2; /**< Multi-line detailed description. Blah
blah blah */
} TEST_S;
Doxyfile is the default as generated by doxygen -g, with the only change being that I have edited the INPUT tag to point to my source.
Doxygen generates simple memdoc paragraphs from the single-line descriptions as expected, however, the multi-line descriptions are somehow being handled such the first line gets formatted as a code fragment. I have no idea why. The actual HTML that is generated is as follows:
<pre class="fragment"> Multi-line detailed description. Blah
</pre><p> blah blah </p>
Why isn't Doxygen generating just a simple paragraph?