This repository was archived by the owner on Aug 18, 2023. It is now read-only.

Description
It would be nice to have the ability to have the sidebar reference an anchor in a MD file or to auto generate links based on headings a in the file.
I tried to make a sidebar config to be:
pages:
- group: Quick start again
expanded: true
pages:
- label: Introduction
page: developer-portal/quickstart/index.md#Introduction
which would render something like:
Quick start
|_ Introduction (would navigate to the Introduction heading in the quickstart/index.md file).
UPDATE:
I did try the href feature and got it to work using a relative path to host:
For example
pages:
- group: Quick start again
expanded: true
pages:
- label: Introduction
href: "/developer-portal/quickstart/#Introduction" (renders the URL correctly and works)
It would still be a nice feature to have an option to auto generate it from the sidebar.