Re: [Doxygen-users] import html files?
Brought to you by:
dimitri
From: Willem B. <w-...@dd...> - 2014-10-01 10:45:55
|
Dear Tom, I used this to include RFCs in my documentation. To do this, copy the HTML files somewhere in your project and make sure in can be found (in my example the ): in DoxyFile: EXAMPLE_PATH = web/test \ documentation/htmlincludes/ \ In the source, I create pages: /// @page soap11 The SOAP specification, version 1.1 /// @htmlinclude SOAP_1_1.html /// @page soap12 The SOAP specification, version 1.2 /// @htmlinclude SOAP_1_2.html /// @page stylesandencodingsinsoap Styles and Encoding in SOAP messages /// @htmlinclude stylesandencodingsinsoap.html /// @page wsdl11 Web Service Description Language /// @htmlinclude WSDL_1_1.html The files referred to in the @htmlinclude commands are in documentation/htmlincludes/ . Best regards, Willem Bogaerts |