[Doxygen-users] Customizing look in Doxygen
Brought to you by:
dimitri
From: joe b. <be...@mc...> - 2001-07-12 17:33:05
|
Dimitri, I've done some work to customize the output of doxygen to match our project's web design, and coding standard. Much of this has been accomplished via style sheets, but there some things, such as the format of function signatures have been necessary to handle as source code modifications. For example, we prefer to have functions displayed like this: return_type function_name( argument_type1 argument_name1, argument_type2 argument_name2) Rather than doxygen's default return_type function_name(argument_type1 argument_name1, argument_type2, argument_name2) This is mostly because we tend to have rather long function names and argument types. If I were to submit a patch to do this sort of formattting, would it be accepted? Perhaps if I wrapped it in a configuration option? joe |