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
Subject: Adding auto-generated page to toctree
I tried to put a link to the 'routing table' page generated by sphinxcontrib.httpdomain extension into my toctree:
sphinxcontrib.httpdomain
toctree
.. toctree:: :maxdepth: 3 :hidden: Introduction <docs/intro> :ref:`Complete Reference <routingtable>` Changelog <docs/changelog>
but I got an error:
WARNING: toctree contains reference to nonexisting document u':ref:` <routingtable>`'
Is it possible to somehow link the routing table page in my toctree?
Install the extension pip install sphinxcontrib-httpdomain
pip install sphinxcontrib-httpdomain
Update config.py
from sphinx.domains.std import StandardDomain extensions.append('sphinxcontrib.httpdomain') def setup(app): StandardDomain.initial_data['labels']['routingtable'] = ( 'http-routingtable', '', 'HTTP Routing Table') StandardDomain.initial_data['anonlabels']['routingtable'] = ( 'http-routingtable', '') """
index.rst
Documentation ============= .. toctree:: :maxdepth: 3 :hidden: Introduction <docs/intro> :ref:`Complete Reference <routingtable>` Changelog <docs/changelog>
Build docs make html
make html
Visit generated TOC page in your build.
I'd like to include generated page into my toctree.
The text was updated successfully, but these errors were encountered:
Thank you for proposal. We'll consider the feature in #2354 and #1800.
Thanks,
Sorry, something went wrong.
No branches or pull requests
Subject: Adding auto-generated page to toctree
Problem
I tried to put a link to the 'routing table' page generated by
sphinxcontrib.httpdomain
extension into mytoctree
:but I got an error:
Is it possible to somehow link the routing table page in my
toctree
?Procedure to reproduce the problem
Install the extension
pip install sphinxcontrib-httpdomain
Update config.py
index.rst
fileBuild docs
make html
Visit generated TOC page in your build.
Error logs / results
Expected results
I'd like to include generated page into my
toctree
.Environment info
The text was updated successfully, but these errors were encountered: