/** @page pluginpage How to add a Medium Plugin

 @verbinclude plugins.txt
*/


Note: There is no way in doxygen to simply have seperate html pages
included. The command @htmlonly also includes the file as if it were
in a @verbatim/@endhtmlonly block, i.e. it will still show up in a
separate code box. What the heck. 

The only solution would be to edit the documents fully into
doxygen-Style and have them included directly. This would give the
benefit of using the @section,@subsection etc. commands and having
everything linked to everywhere. 

But beware of the source code examples -- all the text that should
appear in doxygen *has* to appear in a doxygen comment block, i.e. /**
*/ or equivalently /*! */. And code examples which are not marked by
@code/@endcode would end these blocks, thus breaking doxygen's
structure.

