artpolt
artpolt

Reputation: 71

Doxygen strip closing instructions of comments in code block in markdown

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

Answers (1)

artpolt
artpolt

Reputation: 71

Yes, it was a bug. In 1.8.7 all works. In 1.8.12 it works too

Upvotes: 1

Related Questions