We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The "table of contents" page ("toc_index.html", generated via --toc) lists the top-level items in reversed alphabetical order, which is a bit awkward.
The text was updated successfully, but these errors were encountered:
The following patch seems to fix it:
diff --git a/Source/html_generator.c b/Source/html_generator.c index 0fccfea..555031a 100644 --- a/Source/html_generator.c +++ b/Source/html_generator.c @@ -707,7 +707,7 @@ void RB_HTML_Generate_TOC_2( * hierarchy of the headers. */ fprintf( dest_doc, "<ul>\n" ); - for ( i = 0; i < count; ++i ) + for ( i = count -1 ; i >= 0; i-- ) { header = headers[i]; if ( owner == NULL )
Sorry, something went wrong.
Thanks for the bug report and patch.
Will be fixed in the comming release.
No branches or pull requests
The "table of contents" page ("toc_index.html", generated via --toc) lists the top-level items in reversed alphabetical order, which is a bit awkward.
The text was updated successfully, but these errors were encountered: