Reputation: 71
When i try to include code block in .md(markdown) file, doxygen strip closing instruction of comments. How can i insert multiline comment with /** ... */ instructions in markdown file? STRIP_CODE_COMMENTS parametr set to NO
Example:
~~~~
namespace ExternalApi\Model;
/**
* Description of class
*/
class Exception extends AbstractException
{}
~~~~
Doxygen output:
namespace ExternalApi\Model;
/**
* Description of class
class Exception extends AbstractException
{}
Upvotes: 0
Views: 193