[Doxygen-users] Formatting & excluding link
Brought to you by:
dimitri
|
From: Dirk M. <dm...@ro...> - 2001-09-19 20:52:33
|
Hi:
I'm working with Doxygen 1.2.10 on Win2k, downloaded from the Doxygen
website.
I'm trying to get a function name to be both unlinked and in constant-width
font. Documentation like:
/*!
* Compares two Dog objects. Contrast with the \c %operator==() for
comparing
* Cats, which always returns false (because everyone knows you can't get
two
* Cats into the same function at the same time.)
*/
bool operator==(const Dog& first, const Dog& second) {...};
Produces this HTML:
<p>
Compares two Dog objects. Contrast with the <code>%operator==()</code> for
comparing Cats, which always returns false (because everyone knows you can't
get two Cats into the same function at the same time.)
(Including the full function signature for the function being discussed does
give me the correct link. Leaving the function in default font gives me an
unlinked function without the leading %. So, I've got options for dealing
with this, just not the one I prefer.)
Is there a way to convince Doxygen to exclude a link, present the function
in constant-width font, *and* remove the leading %?
Thanks,
Dirk
dm...@ro...
|