Ok. The following gives me the desired result:
\code
/*/** */* \brief a goog friend of Bar */
In a markdown file the following fenced code block causes a doxygen crash
~~~{.m}
@property Foo *foo;
~~~
The corresponding \code block works fine:
\code{.m}
@property Foo *foo;
\endcode
I have tried this with Apple's provided 1.8.2 and also 1.8.3
--
I am trying to write Objective-C coding guidelines in a markdown file and would
like to provide code examples that include doc comments. However when I do
something like:
\code{.m}
/** a good friend of Bar */
@interface Foo
@end
\endcode
The comment becomes a blank line in the resulting code b