diff options
author | Anup Patel <anup.patel@wdc.com> | 2020-05-06 12:16:48 +0530 |
---|---|---|
committer | Anup Patel <anup@brainfault.org> | 2020-05-07 09:46:22 +0530 |
commit | c2286b6f042d80ccd6b047421570d59967568d3f (patch) | |
tree | 2a2171d7bd2cb9601611c82b14805dad97fc8f31 /docs | |
parent | dfd9dd67dcac5d0cb639988e4420ab82516ba8be (diff) |
docs: Fix ordering of pages in table of contents
Currently, all markdown pages are randomly arranged in table of
contents so to fix this we treat top-level README.md as mainpage
and enable Doxygen TREEVIEW.
Also, there should not be any text before title of a markdown
page so we move project copyright as separate section in top-level
README.md.
Signed-off-by: Anup Patel <anup.patel@wdc.com>
Reviewed-by: Atish Patra <atish.patra@wdc.com>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/doxygen.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/doxygen.cfg b/docs/doxygen.cfg index 52346be..f32ada1 100644 --- a/docs/doxygen.cfg +++ b/docs/doxygen.cfg @@ -1445,7 +1445,7 @@ DISABLE_INDEX = NO # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. -GENERATE_TREEVIEW = NO +GENERATE_TREEVIEW = YES # The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that # doxygen will group on one line in the generated HTML documentation. |