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
I'd like to have a following setup: some docs are generated by vocs, but some paths are separate html roots
vocs
Kinda like this:
/index.html -- from vocs /getting-started/index.html -- also from vocs /typedoc/index.html -- generated by typedoc
To achieve that, i generate both types of docs, and copy them in the same root.
Now, I want to add a link to typedoc docs in the sidebar:
{ sidebar: [ { text: "Getting Started", link: "/getting-started", }, { text: "Typedoc Docs", link: "/typedoc/", }, ] }
to config, the link will be handled by react-router and produce 404 on click (reloading page will take me to typedoc docs)
Same would happen if I use absolute link with hostname, but the hostname would be the same.
Maybe adding something like this would make sense?
{ text: "Typedoc Docs", link: "/typedoc/", extenal: true, }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'd like to have a following setup: some docs are generated by
vocs
, but some paths are separate html rootsKinda like this:
To achieve that, i generate both types of docs, and copy them in the same root.
Now, I want to add a link to typedoc docs in the sidebar:
to config, the link will be handled by react-router and produce 404 on click (reloading page will take me to typedoc docs)
Same would happen if I use absolute link with hostname, but the hostname would be the same.
Maybe adding something like this would make sense?
The text was updated successfully, but these errors were encountered: