Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Generate single-file HTML code documentation

How can I use Doxygen to create the HTML documentation as a single, very long file? I want something like the RTF output, but as HTML.

The reason: I need my API published as a single, printable, document. Something that can be loaded into Word, converted to PDF, etc.

like image 910
noamtm Avatar asked Dec 17 '08 09:12

noamtm


1 Answers

I think you can use HTMLDOC to convert the generated html files to a single html file. (I did not try it myself)

The manual includes the following example to generate a html from two source html files:

htmldoc --book -f output.html file1.html file2.html

But there is also a gui.

like image 194
wimh Avatar answered Oct 12 '22 22:10

wimh