I would like to create a custom command in Doxygen similar to \fn \param or \var .
For example, I would like to be able to create the \option command, which I would use as follows:
With an output like:
Options:
option_1 This is the first option.
option_2 This is the second option.
A simple replacement alias does not work. For example, using this alias:
ALIASES = option="\par Options:\n"
I get the following output:
Options:
option_1 This is the first option.
Options:
option_2 This is the second option.
This is not what I am looking for.
BOUNTY:
If any further clarification is necessary, see my question: Doxygen - create a custom command
doxygen
amicitas
source share