I am new to Doxygen and trying to comment my code.
I have some issue with the comments: my multi line comments appear in a single line and I don't want to use \\n
or <br>
.
/**
Brief - this is a function
Get -
Return -
*/
void func1()
{
return
}
I want each line to start a new line.
However, the result is:
Brief - this is a function Get: - Return: - Post: -
I have tried also:
/// Brief - this is a function
/// Get -
/// Return -
void func1()
{
return
}
Same result as mentioned above.