Hi,
A few questions I tried to search for on sourceforge - but the mail-archive
search-engine is broken:
I am trying to customize Doxygen's output as I am commenting object oriented
Javascript source. This works very nicely, if I specify the properties
manually.
To do this, I added aliases, for instance:
ALIASES = "inherit=\par Inheritance: This inherits from "
So I can do:
@inherit DynEvent
The out put looks like this:
<b>Inheritance: This inherits from DynEvent</b>
What I am trying to do, is make more powerful aliases, maybe something like
this:
ALIASES = "inherit=\par Inheritance: \nThis inherits from: \a \n"
So I could then do this:
@inherit DynEvent most properties of Dynevent are blah blah...
and the output would look like this:
<b>Inheritance:</b>
This inherits from <i>DynEvent</i>
most properties of Dynevent are blah blah...
Can this be done?
And also, is it possible to overwrite a commands default behavior? If I just
want a class to show under a heading, and not on a separate page for
instance?
I tried
ALIASES = "class=\par Class: \n"
but that didn't work.
Thanks for any ideas.
Richard.
www.richardinfo.com
|