[Doxygen-users] External function documentation in markdown files
Brought to you by:
dimitri
|
From: Joe B. <pub...@gm...> - 2018-05-04 13:59:16
|
Hi,
Is it possible to use the 'fn' command in markdown files?
'example.c':
/*!
* \file
*/
void example(int i)
{
/* do something */
}
'doc.md':
Title
=====
\fn void example(int i)
\brief An example
\param i A parameter
When I run 'example.c' and 'doc.md' through Doxygen I get two warnings:
doc.md:3: warning: member with no name found.
example.c:4: warning: Member example(int i) (function) of file
example.c is not documented.
Thanks.
|