Skip to content

Commit 2d42ee0

Browse files
committed
Add special blockquote formatting https://github.com/orgs/community/discussions/16925
1 parent 7a870b6 commit 2d42ee0

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

How-to-Contribute.md

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,10 @@ In case of issues, try deleting the contents of `~/.node-gyp` (alternatively `~/
4747

4848
> If you are on Windows or Linux 64 bit systems and would like to compile to 32 bit, you'll need to set the `npm_config_arch` environment variable to `ia32` before running `npm`. This will compile all native node modules for a 32 bit architecture. Similarly, when cross-compiling for ARM, set `npm_config_arch` to `arm`.
4949
50-
> **Note:** For more information on how to install NPM modules globally on UNIX systems without resorting to `sudo`, refer to [this guide](http://www.johnpapa.net/how-to-use-npm-global-without-sudo-on-osx/).
50+
> [!NOTE]
51+
> For more information on how to install NPM modules globally on UNIX systems without resorting to `sudo`, refer to [this guide](http://www.johnpapa.net/how-to-use-npm-global-without-sudo-on-osx/).
5152
53+
> [!WARNING]
5254
> If you have Visual Studio 2019 installed, you may face issues when using the default version of node-gyp. If you have Visual Studio 2019 installed, you may need to follow the solutions [here](https://github.com/nodejs/node-gyp/issues/1747).
5355
5456
#### Missing spectre mitigated libraries on Windows
@@ -140,7 +142,8 @@ If the build step fails, or if the built version fails to run (see next section)
140142
#### Errors and Warnings
141143
Errors and warnings will show in the console while developing VS Code. If you use VS Code to develop VS Code, errors and warnings are shown in the status bar at the bottom left of the editor. You can view the error list using `View | Errors and Warnings` or pressing <kbd>Ctrl</kbd>+<kbd>P</kbd> and then <kbd>!</kbd> (<kbd>CMD</kbd>+<kbd>P</kbd> and <kbd>!</kbd> on macOS).
142144

143-
👉 **Tip!** You don't need to stop and restart the development version of VS Code after each change. You can just execute `Reload Window` from the command palette. We like to assign the keyboard shortcut <kbd>Ctrl</kbd>+<kbd>R</kbd> (<kbd>CMD</kbd>+<kbd>R</kbd> on macOS) to this command.
145+
> [!TIP]
146+
> You don't need to stop and restart the development version of VS Code after each change. You can just execute `Reload Window` from the command palette. We like to assign the keyboard shortcut <kbd>Ctrl</kbd>+<kbd>R</kbd> (<kbd>CMD</kbd>+<kbd>R</kbd> on macOS) to this command.
144147
145148
### Run
146149

@@ -166,13 +169,15 @@ Running on Electron with extensions run in NodeJS:
166169
.\scripts\code-cli.bat
167170
```
168171

169-
👉 **Tip!** If you receive an error stating that the app is not a valid Electron app, it probably means you didn't run `npm run watch` first.
172+
> [!TIP]
173+
> If you receive an error stating that the app is not a valid Electron app, it probably means you didn't run `npm run watch` first.
170174
171175
#### VS Code for the Web
172176

173177
Extensions and UI run in the browser.
174178

175-
👉 Besides `npm run watch` also run `npm run watch-web` to build the web bits for the built-in extensions.
179+
> [!TIP]
180+
> Besides `npm run watch` also run `npm run watch-web` to build the web bits for the built-in extensions.
176181
177182
##### macOS and Linux
178183

@@ -280,7 +285,8 @@ These `gulp` tasks are available:
280285
* `vscode-[platform]`: Builds a packaged version for `[platform]`.
281286
* `vscode-[platform]-min`: Builds a packaged and minified version for `[platform]`.
282287

283-
👉 **Tip!** Run `gulp` via `npm` to avoid potential out of memory issues, for example `npm run gulp vscode-linux-x64`
288+
> [!TIP]
289+
> Run `gulp` via `npm` to avoid potential out of memory issues, for example `npm run gulp vscode-linux-x64`
284290
285291
See also: [Cross-Compiling for Debian-based Linux](https://github.com/Microsoft/vscode/wiki/Cross-Compiling-for-Debian-Based-Linux)
286292

0 commit comments

Comments
 (0)