-
-
Notifications
You must be signed in to change notification settings - Fork 5.8k
docs: Add v5 upgrade docs #2665
New issue
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
Merged
Merged
Changes from 5 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
1d8a35f
Add v5 upgrade docs.
paulhibbitts 1a03d35
Update v5-upgrade.md
paulhibbitts 26714e5
Update v5-upgrade.md
paulhibbitts a8cd334
Update v5-upgrade.md
paulhibbitts 1d73ba1
Update docs.test.js.snap
paulhibbitts b7ac81a
Update docs/v5-upgrade.md
paulhibbitts 56151a8
Update docs/v5-upgrade.md
paulhibbitts 2a045f6
Update docs/v5-upgrade.md
paulhibbitts 0119199
Update docs/v5-upgrade.md
paulhibbitts a1b1351
Update docs/v5-upgrade.md
paulhibbitts 6c8228a
Update v5-upgrade.md
paulhibbitts File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,128 @@ | ||
| # Upgrading v4 to v5 | ||
|
|
||
| The main changes when upgrading a Docsify v4 site to v5 involve updating CDN URLs and theme files. Your configuration settings remain mostly the same, so the upgrade is fairly straightforward. | ||
|
|
||
| ## Before You Begin | ||
|
|
||
| Some older Docsify sites may use non-version-locked URLs like: | ||
|
|
||
| ```html | ||
| <script src="//cdn.jsdelivr.net/npm/docsify/lib/docsify.min.js"></script> | ||
| ``` | ||
|
|
||
| If your site uses URLs without `@4` or a specific version number, follow the same steps below. You'll need to update both the version specifier and the path structure. | ||
|
|
||
| ## Step-by-Step Instructions | ||
|
|
||
| ### 1. Update the Theme CSS | ||
|
|
||
| **Replace the theme (v4):** | ||
|
|
||
| ```html | ||
| <link | ||
| rel="stylesheet" | ||
| href="//cdn.jsdelivr.net/npm/docsify@4/lib/themes/vue.css" | ||
| /> | ||
| <!-- OR if you have non-versioned URL: --> | ||
| <link | ||
| rel="stylesheet" | ||
| href="//cdn.jsdelivr.net/npm/docsify/lib/themes/vue.css" | ||
| /> | ||
| ``` | ||
|
|
||
| **With this (v5):** | ||
|
|
||
| ```html | ||
| <!-- Core Theme --> | ||
| <link | ||
| rel="stylesheet" | ||
| href="https://cdn.jsdelivr.net/npm/docsify@5/dist/themes/core.min.css" | ||
| /> | ||
| <!-- Optional: Dark Mode Support --> | ||
| <link | ||
| rel="stylesheet" | ||
| href="https://cdn.jsdelivr.net/npm/docsify@5/dist/themes/addons/core-dark.min.css" | ||
|
paulhibbitts marked this conversation as resolved.
Outdated
|
||
| media="(prefers-color-scheme: dark)" | ||
| /> | ||
| ``` | ||
|
|
||
| **Note:** If you were using a different v4 theme (buble, dark, pure), the v5 core theme replaces these, though Vue and Dark themes are available as add-ons if preferred. | ||
|
|
||
| View [Themes](themes.md) for more details. | ||
|
|
||
| ### 2. Add Optional Body Class (for styling) | ||
|
|
||
| **Update your opening body tag:** | ||
|
|
||
| ```html | ||
| <body class="sidebar-chevron-right"></body> | ||
| ``` | ||
|
|
||
| This adds a chevron indicator to the sidebar. You can omit this if you prefer. | ||
|
|
||
| View [Theme Classes](themes.md?id=classes) for more details. | ||
|
|
||
| ### 3. Update the Main Docsify Script | ||
|
|
||
| **Change:** | ||
|
|
||
| ```html | ||
| <script src="https://cdn.jsdelivr.net/npm/docsify@4/lib/docsify.min.js"></script> | ||
| <!-- OR if you have non-versioned URL: --> | ||
| <script src="//cdn.jsdelivr.net/npm/docsify/lib/docsify.min.js"></script> | ||
| ``` | ||
|
|
||
| **To:** | ||
|
|
||
| ```html | ||
| <script src="https://cdn.jsdelivr.net/npm/docsify@5/dist/docsify.min.js"></script> | ||
|
paulhibbitts marked this conversation as resolved.
Outdated
|
||
| ``` | ||
|
|
||
| ### 4. Update Plugin URLs | ||
|
|
||
| **Search Plugin:** | ||
|
|
||
| ```html | ||
| <!-- v4 --> | ||
| <script src="https://cdn.jsdelivr.net/npm/docsify@4/lib/plugins/search.js"></script> | ||
| <!-- OR non-versioned: --> | ||
| <script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/search.js"></script> | ||
|
|
||
| <!-- v5 --> | ||
| <script src="https://cdn.jsdelivr.net/npm/docsify@5/dist/plugins/search.min.js"></script> | ||
|
paulhibbitts marked this conversation as resolved.
Outdated
|
||
| ``` | ||
|
|
||
| **Zoom Plugin:** | ||
|
|
||
| ```html | ||
| <!-- v4 --> | ||
| <script src="https://cdn.jsdelivr.net/npm/docsify@4/lib/plugins/zoom-image.min.js"></script> | ||
| <!-- OR non-versioned: --> | ||
| <script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/zoom-image.min.js"></script> | ||
|
|
||
| <!-- v5 --> | ||
| <script src="https://cdn.jsdelivr.net/npm/docsify@5/dist/plugins/zoom.min.js"></script> | ||
|
paulhibbitts marked this conversation as resolved.
Outdated
|
||
| ``` | ||
|
|
||
| **Note:** If you're using additional Docsify plugins (such as emoji, external-script, front-matter, etc.), you'll need to update those URLs as well following the same pattern: | ||
|
|
||
| - Change `/lib/plugins/` to `/dist/plugins/` | ||
| - Update version from `@4` (or non-versioned) to `@5` | ||
| - Example: `//cdn.jsdelivr.net/npm/docsify/lib/plugins/emoji.min.js` becomes `https://cdn.jsdelivr.net/npm/docsify@5/dist/plugins/emoji.min.js` | ||
|
paulhibbitts marked this conversation as resolved.
Outdated
|
||
|
|
||
| ## Key Differences Summary | ||
|
|
||
| - **CDN Path**: Changed from `/lib/` to `/dist/` | ||
| - **Version**: Updated from `@4` to `@5` | ||
| - **Themes**: v5 uses a core theme (with optional add-ons available) | ||
| - **Plugin Names**: `zoom-image` → `zoom` | ||
|
|
||
| ## Additional Notes | ||
|
|
||
| - Your configuration in `window.$docsify` stays the same | ||
| - All your markdown content remains unchanged | ||
| - The upgrade is non-breaking for most sites (however, legacy browsers like Internet Explorer 11 are no longer supported) | ||
| - Custom CSS targeting v4 theme-specific classes or elements may need to be updated for v5 | ||
| - The v5 core theme can be customized using CSS variables - view [Theme Customization](themes.md?id=customization) for more details | ||
|
|
||
| That's it! Your Docsify site should now be running on v5. | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.