Re: [Doxygen-users] PHP alternative syntax
Brought to you by:
dimitri
From: Ron W. <ron...@gm...> - 2013-12-18 16:20:13
|
On Wed, Dec 18, 2013 at 8:44 AM, < dox...@li...> wrote: > > Date: Wed, 18 Dec 2013 14:22:25 +0100 > From: Willem Bogaerts <w-...@dd...> > Subject: [Doxygen-users] PHP alternative syntax > To: dox...@li... > Message-ID: <52B...@dd...> > Content-Type: text/plain; charset=ISO-8859-1 > > Dear group, > > Does anyone know where I can find the PHP keywords in the doxygen source > code? I'd like to add the "alternative syntax" ending keywords, like > "endif", "endforeach", "endwhile", etc. > Doxygen has a pre-processor similar to the C/C++ pre-processor. Is your Doxygen configuration, you can configure "macros" to replace the alternate keywords with their primary equivalents. Alternately, you could write an input filter for Doxygen to perform the replacements. You could even write the filter in PHP. |