I am generating documentation with following code :
.. include:: codingstandard/purpose.rst
.. include:: codingstandard/scope.rst
.. include:: codingstandard/acknowledgments.rst
.. include:: codingstandard/files.rst
.. include:: codingstandard/includedirectives.rst
.. include:: codingstandard/comments.rst
and my aim here is to produce table of contents and to have the document in one web page (not to go to separate web page for each chapter).
But this produces warning like :
WARNING: document isn't included in any toctree
I can do something like this as well :
codingstandard/acknowledgments
codingstandard/includedirectives
And then I won't get warnings but I will get table of contents with each chapter in a subpage.
How can I achieve the desired effect without the warnings ?