diff --git a/packages/docs/content/docs/add-to-your-site-cdn.mdx b/packages/docs/content/docs/add-to-your-site-cdn.mdx
index 56b209eb..76ee9c3b 100644
--- a/packages/docs/content/docs/add-to-your-site-cdn.mdx
+++ b/packages/docs/content/docs/add-to-your-site-cdn.mdx
@@ -45,12 +45,12 @@ In this example, we pull the `admin/index.html` file from a public CDN.
-
+
Content Manager
-
+
diff --git a/packages/docs/content/docs/decap-migration-guide.mdx b/packages/docs/content/docs/decap-migration-guide.mdx
index 061b9feb..fe02baf4 100644
--- a/packages/docs/content/docs/decap-migration-guide.mdx
+++ b/packages/docs/content/docs/decap-migration-guide.mdx
@@ -17,13 +17,13 @@ Start by replacing Decap with Static CMS, then address the changes below.
Decap:
```html
-
+
```
Static CMS:
```html
-
+
```
### Bundling
@@ -64,7 +64,7 @@ Static CMS bundles its styles separately from the main javascript file, so you w
**CDN**:
```html
-
+
```
**Bundling**:
diff --git a/packages/docs/content/docs/updating-your-cms.mdx b/packages/docs/content/docs/updating-your-cms.mdx
index f61234ed..d4789552 100644
--- a/packages/docs/content/docs/updating-your-cms.mdx
+++ b/packages/docs/content/docs/updating-your-cms.mdx
@@ -14,12 +14,12 @@ If you are using a package manager like Yarn or NPM, use their standard procedur
If you are using Static CMS through a CDN like Unpkg, then that depends on the version tag you are using. You can find the version tag in the `/admin/index.html` file of your site.
-- (Recommended) If you use `^2.0.0`, Static CMS does all updates except major versions automatically.
- - It upgrades to `2.0.1`, `2.1.0`, `2.1.1`.
- - It does not upgrade to `2.0.0` or higher.
+- (Recommended) If you use `^3.0.0`, Static CMS does all updates except major versions automatically.
+ - It upgrades to `3.0.1`, `3.1.0`, `3.1.1`.
+ - It does not upgrade to `3.0.0` or higher.
- It does not upgrade to beta versions.
-- If you use `~2.0.0`, Static CMS will do only patch updates automatically.
- - It upgrades `2.0.1`, `2.0.2`.
- - It does not upgrade to `2.1.0` or higher.
+- If you use `~3.0.0`, Static CMS will do only patch updates automatically.
+ - It upgrades `3.0.1`, `3.0.2`.
+ - It does not upgrade to `3.1.0` or higher.
- It does not upgrade beta versions.