if I have a c header file with a doxygen comment:
/*!
* @file MyHeaderFile.h
* @brief Brief header file description
* @author Me Myself
* @date 2012.4.16
*/
This results in html like this:
This same syntax works fine in function comments:
Am I doing something wrong or is this all that is supported?
EDIT: normal function comment:
/*!
* @brief This function does things
*
* @author Me Myself
* @date 2012.4.16
*
* @returns void
*/
void MyFunctionThing(void)
{
}
Although I could not really reproduce the problem given your example, this is most likely the result of Markdown support (introduced in version 1.8.0), in particular the code blocks feature.
Options you can try to avoid/workaround this:
*).