c# - Is there a simple way to replace &lt; and &gt; 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&lt;tkey, tvalue&gt;"/>. /// </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&lt;tkey, tvalue&gt;.

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 &lt; , &gt; < , > 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&lt;tkey, tvalue&gt; 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}"/> 

see: cref attribute on msdn


Comments

Popular posts from this blog

python - mat is not a numerical tuple : openCV error -

c# - MSAA finds controls UI Automation doesn't -

wordpress - .htaccess: RewriteRule: bad flag delimiters -