c# - Is there a simple way to replace < and > with '<' and '>' in Doxygen HTML output? -
i using doxygen read standard xml summary blocks in c# code. works quite well, except 1 issue. have custom dictionary , in documentation have following:
/// <summary> /// 'add' event handler <see cref="eventeddictionary<tkey, tvalue>"/>. /// </summary>
which appears
the 'add' event handler eventeddictionary<tkey, tvalue>.
in intellisense popups, expect. not work in main html output of doxygen, appearing instead
the 'add' event handler eventeddictionary<tkey, tvalue>.
this causes no issues visual studio, keeps intellisense happy (thereby keeping me happy , i'm sure successors on project happy), cause issues in doxygen's output html. because of these issues, html documentation ugly. aware doxygen has filters input, cannot seem figure them out. maybe i'm being meticulous in documentation...
is there simple way replace <
, >
<
, >
in doxygen html output?
limitations:
- i cannot permanently modify .cs files.
- i not have access program such cygwin, make trivial. (i running windows 7, if matters)
- preferably, can done within doxygen's processing of files, though not must. want make sure it's simple whoever takes on me, simple script fine.
the documentation looks in html page:
detailed description
represents standard dictionary<tkey, tvalue>
type events standard add , remove methods.
template parameters
tkey type dictionary keys.
tvalue type dictionary values.
definition @ line 13 of file eventeddictionary.cs.
<see cref="eventeddictionary{tkey, tvalue}"/>
Comments
Post a Comment