Skip to content

Commit 8143a4e

Browse files
authored
chore(installation): unify and fix some markdown styles (#918)
* chore(installation): unify to use backquates in 'Explanation of Different Builds' * chore(installation): remove some markdown linter warnings
1 parent 2a7361e commit 8143a4e

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/guide/installation.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,8 @@ $ cd <project-name>
9090
$ yarn
9191
$ yarn dev
9292
```
93-
It might occur, that when your username has a space in it like 'Mike Baker' that vite cannot succeed. Have a try with
93+
94+
It might occur, that when your username has a space in it like 'Mike Baker' that vite cannot succeed. Have a try with
9495

9596
```bash
9697
$ create-vite-app <project-name>
@@ -115,14 +116,14 @@ In the [`dist/` directory of the npm package](https://cdn.jsdelivr.net/npm/vue@3
115116
Global builds are not [UMD](https://github.com/umdjs/umd) builds. They are built as [IIFEs](https://developer.mozilla.org/en-US/docs/Glossary/IIFE) and are only meant for direct use via `<script src="...">`.
116117
:::
117118

118-
#### vue(.runtime).esm-browser(.prod).js:
119+
#### `vue(.runtime).esm-browser(.prod).js`:
119120

120121
- For usage via native ES modules imports (in browser via `<script type="module">`.
121122
- Shares the same runtime compilation, dependency inlining and hard-coded prod/dev behavior with the global build.
122123

123124
### With a Bundler
124125

125-
#### vue(.runtime).esm-bundler.js:
126+
#### `vue(.runtime).esm-bundler.js`:
126127

127128
- For use with bundlers like `webpack`, `rollup` and `parcel`.
128129
- Leaves prod/dev branches with `process.env.NODE_ENV guards` (must be replaced by bundler)

0 commit comments

Comments
 (0)