-
-
Notifications
You must be signed in to change notification settings - Fork 5.8k
-
It wasn't clear from the docs whether that was supported. It would be useful for projects that use master branch as the development branch but want to offer documentation for the last release instead (e.g. using git tag latest
).
Beta Was this translation helpful? Give feedback.
All reactions
Replies: 2 comments 1 reply
-
Hi @olalonde , If you use the Github Pages or other services, I think it should be the deploy approach of the deploy kit since it only depends on which version docsify docs you wanna use to setup the site. Maybe you could found the trick on github pages or other services related docs.
Beta Was this translation helpful? Give feedback.
All reactions
-
How would I do that here? Doesn't docsifyjs/docsify
always refer to the main branch?
window.$docsify = {
repo: 'docsifyjs/docsify',
maxLevel: 3,
coverpage: true,
};
Beta Was this translation helpful? Give feedback.
All reactions
-
the config of repo
just determines where to go for the github corner icon of docsify. it does not decide the deploy branch/version. if you deploy your site by github pages. you should check the config of your github pages and config it deploy from a branch or other versions via github action
.
Beta Was this translation helpful? Give feedback.