Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6572431
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T15:00:19+00:00 2026-05-25T15:00:19+00:00

I have a very large class, which is very documented. Doxygen is used for

  • 0

I have a very large class, which is very documented. Doxygen is used for producing the HTML documentation, but for this class the HTML file is big ~12 MB, which is too much for my taste.

This happens becuase Doxygen list all documentation of the class in one file, but in this case it’s desiderable to split class functions documentation in separate pages, in order to have a reasonable page.

What I’m asking: is there any solution to this?

Maybe is there a special option/trick for this? Or…
Maybe I can disable “normal” documentation for this class, and copy the class function documentation in a better organized page? In this case I shall @copydoc those functions, isn’t?

What is you advice?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T15:00:20+00:00Added an answer on May 25, 2026 at 3:00 pm

    It is possible!

    There is a configuration key: ‘SEPARATE_MEMBER_PAGES=YES’. This will create a different page for each class member.

    The next problem is the number of files that Doxygen generates (a filesystem nightmare), but this is solvable by setting ‘CREATE_SUBDIRS=YES’: at least this sparse files into directories, so make them manageable.


    After few days…


    No. The problem still exists… no, it is worse than ever: each separate class member page list all class member on the left: 4K member pages, for 1 MB each make… 4 GB? OMG.

    So, I decided to remove that table listing (so much expansive) from the resulted HTML. Fortunately this section is uniform on all generated files. I made an utility program to achieve this. Here is the most usefull code snippet (using HtmlAgilityPack):

    HtmlAgilityPack.HtmlNode divNode = htmlDoc.DocumentNode.SelectSingleNode("//body/div[@class='contents']/table/tr/td/div[@class='navtab']");
    
    if (divNode != null) {
        divNode.ParentNode.RemoveChild(divNode, false);
    
        Console.WriteLine("Queued {0}", htmlPath);
    
        lock (sReducedHtmlPathsLock) {
            sReducedHtmlPaths.Add(htmlPath, htmlDoc);
            sReducedHtmlPathsSemaphore.Release();
        }
    }
    

    Of course I build a multithread program which load a bunch of HTML files on separate threads and write them in separate threads too (otherwise it take too long).

    The result: passed from 4 GB to 60 MB!

    Are you curious about the result: see the linked pages from this documentation page.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a very large XML file which has like 40000 data, and when
I have class which is seralized and does convert a very large amount of
I have a very large file that looks like this (see below). I have
I have a very old but very large library which I am considering converting
I have a very large program which I have been compiling under visual studio
I have a very large script which contains a lot of php files, so
I have a very large NumPy array: a = np.array . From this array
I have a very large script which is creating multiple views. In a number
We have a very large SWF hosted in a website which is just a
I have a very large, spread out class that is essentially a very contrived

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.