diff --git a/src/v2/guide/comparison.md b/src/v2/guide/comparison.md
index 7b33c7f70d..24fa375fff 100644
--- a/src/v2/guide/comparison.md
+++ b/src/v2/guide/comparison.md
@@ -111,7 +111,7 @@ React is renowned for its steep learning curve. Before you can really get starte
While Vue scales up just as well as React, it also scales down just as well as jQuery. That's right - to get started, all you have to do is drop a single script tag into the page:
``` html
-
+
```
Then you can start writing Vue code and even ship the minified version to production without feeling guilty or having to worry about performance problems.
diff --git a/src/v2/guide/index.md b/src/v2/guide/index.md
index ba2086f0ee..bff865cf56 100644
--- a/src/v2/guide/index.md
+++ b/src/v2/guide/index.md
@@ -24,14 +24,14 @@ The easiest way to try out Vue.js is using the [Hello World example](https://cod
``` html
-
+
```
or:
``` html
-
+
```
The [Installation](installation.html) page provides more options of installing Vue. Note: We **do not** recommend that beginners start with `vue-cli`, especially if you are not yet familiar with Node.js-based build tools.
diff --git a/src/v2/guide/installation.md b/src/v2/guide/installation.md
index 4b8bf201c7..9e5f8a6cf9 100644
--- a/src/v2/guide/installation.md
+++ b/src/v2/guide/installation.md
@@ -41,7 +41,7 @@ Simply download and include with a script tag. `Vue` will be registered as a glo
For prototyping or learning purposes, you can use the latest version with:
``` html
-
+
```
For production, we recommend linking to a specific version number and build to avoid unexpected breakage from newer versions:
@@ -84,7 +84,7 @@ Vue provides an [official CLI](https://github.com/vuejs/vue-cli) for quickly sca
## Explanation of Different Builds
-In the [`dist/` directory of the NPM package](https://cdn.jsdelivr.net/npm/vue/dist/) you will find many different builds of Vue.js. Here's an overview of the difference between them:
+In the [`dist/` directory of the NPM package](https://cdn.jsdelivr.net/npm/vue@2/dist/) you will find many different builds of Vue.js. Here's an overview of the difference between them:
| | UMD | CommonJS | ES Module (for bundlers) | ES Module (for browsers) |
| --- | --- | --- | --- | --- |
@@ -101,7 +101,7 @@ In the [`dist/` directory of the NPM package](https://cdn.jsdelivr.net/npm/vue/d
- **Runtime**: code that is responsible for creating Vue instances, rendering and patching virtual DOM, etc. Basically everything minus the compiler.
-- **[UMD](https://github.com/umdjs/umd)**: UMD builds can be used directly in the browser via a `