You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Build and publish v4 lib/ and themes/ folders for backwards compatibility while users transition to v5.
- add a script to build the legacy v4 lib/ and themes/ folders
- append deprecation console warnings to the v4 JS files during the v4 build
- add a script to clean v4 build outputs
- hook the v4 build/clean scripts into the release.sh script
- test the v4 build and clean in CI
Copy file name to clipboardExpand all lines: docs/quickstart.md
+22-5Lines changed: 22 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ After the `init` is complete, you can see the file list in the `./docs` subdirec
22
22
-`README.md` as the home page
23
23
-`.nojekyll` prevents GitHub Pages from ignoring files that begin with an underscore
24
24
25
-
You can easily update the documentation in `./docs/README.md`, of course you can add [more pages](adding-pages.md).
25
+
You can easily update the documentation in `./docs/README.md`, and of course you can add [more pages](adding-pages.md).
26
26
27
27
## Preview your site
28
28
@@ -76,9 +76,14 @@ Download or create an `index.html` template using the following markup:
76
76
77
77
### Specifying docsify versions
78
78
79
-
> [!TIP] Note that in both of the examples below, docsify URLs will need to be manually updated when a new major version of docsify is released (e.g. `v5.x.x` => `v6.x.x`). Check the docsify website periodically to see if a new major version has been released.
79
+
> [!TIP] Note that in both of the examples below, docsify URLs will need to be
80
+
> manually updated when a new major version of docsify is released (e.g. `v5.x.x`
81
+
> => `v6.x.x`). Check the docsify website periodically to see if a new major
82
+
> version has been released.
80
83
81
-
Specifying a major version in the URL (`@5`) will allow your site to receive non-breaking enhancements (i.e. "minor" updates) and bug fixes (i.e. "patch" updates) automatically. This is the recommended way to load docsify resources.
84
+
Specifying a major version in the URL (`@5`) will allow your site to receive
85
+
non-breaking enhancements (i.e. "minor" updates) and bug fixes (i.e. "patch"
86
+
updates) automatically. This is the recommended way to load docsify resources.
82
87
83
88
<!-- prettier-ignore -->
84
89
```html
@@ -89,7 +94,11 @@ Specifying a major version in the URL (`@5`) will allow your site to receive non
If you prefer to lock docsify to a specific version, specify the full version after the `@` symbol in the URL. This is the safest way to ensure your site will look and behave the same way regardless of any changes made to future versions of docsify.
97
+
If you'd like to ensure absolutely no possibility of changes that will break
98
+
your site (non-major updates can unintentionally introduce breaking changes
99
+
despite that they aim not to), specify the full version after the `@` symbol in
100
+
the URL. This is the safest way to ensure your site will look and behave the
101
+
same way regardless of any changes made to future versions of docsify.
93
102
94
103
<!-- prettier-ignore -->
95
104
```html
@@ -100,9 +109,17 @@ If you prefer to lock docsify to a specific version, specify the full version af
0 commit comments