Skip to content

Commit cd05db6

Browse files
committed
Improve markdown formatting
Signed-off-by: Tushar Mittal <[email protected]>
1 parent 518cb0b commit cd05db6

10 files changed

Lines changed: 16 additions & 16 deletions

File tree

docs/getstarted/theme-color-reference.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -568,7 +568,7 @@ If you target VS Code versions before the 1.21 (February 2018) release, these ar
568568
- `settings.dropdownBackground`: Dropdown background.
569569
- `settings.dropdownForeground`: Dropdown foreground.
570570
- `settings.dropdownBorder`: Dropdown border.
571-
* `settings.dropdownListBorder`: Dropdown list border.
571+
- `settings.dropdownListBorder`: Dropdown list border.
572572
- `settings.checkboxBackground`: Checkbox background.
573573
- `settings.checkboxForeground`: Checkbox foreground.
574574
- `settings.checkboxBorder`: Checkbox border.
@@ -600,4 +600,3 @@ The theme colors for snippets:
600600
## Extension Colors
601601

602602
Color ids can also be contributed by extensions through the [color contribution point](/docs/extensionAPI/extension-points.md#contributescolors). These colors also appear when using code complete in the `workbench.colorCustomizations` settings and the color theme definition file. Users can see what colors an extension defines in the [extension contributions](/docs/editor/extension-gallery.md#extensiondetails) tab.
603-

docs/languages/css.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ You can hide VS Code's color previews by setting the following [setting](/docs/g
4242
```
4343

4444
To just disable it for css, Less and SCSS, use
45+
4546
```json
4647
"[css]": {
4748
"editor.colorDecorators": false
@@ -108,7 +109,7 @@ For this walkthrough, let's use either the [node-sass](https://www.npmjs.com/pac
108109
109110
>**Note:** If you don't have [Node.js](https://nodejs.org) and the [NPM](https://www.npmjs.com/) package manager already installed, you'll need to do so for this walkthrough. [Install Node.js for your platform](https://nodejs.org/en/download/). The Node Package Manager (NPM) is included in the Node.js distribution. You'll need to open a new terminal (command prompt) for `npm` to be on your PATH.
110111
111-
```
112+
```bash
112113
npm install -g node-sass less
113114
```
114115
@@ -202,7 +203,7 @@ We will use [Gulp](https://gulpjs.com/) to create a task that will automate Sass
202203

203204
We need to install gulp both globally (`-g` switch) and locally:
204205

205-
```
206+
```bash
206207
npm install -g gulp
207208
npm install gulp gulp-sass gulp-less
208209
```

docs/languages/markdown.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ VS Code integrates with Markdown compilers through the integrated [task runner](
128128

129129
For this walkthrough, we use the popular [Node.js](https://nodejs.org) module, [markdown-it](https://github.com/markdown-it/markdown-it).
130130

131-
```
131+
```bash
132132
npm install -g markdown-it
133133
```
134134

docs/languages/powershell.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ code --install-extension ms-vscode.powershell
3232

3333
If you are running VS Code [Insiders](/insiders), you will need this command instead:
3434

35-
```
35+
```bash
3636
code-insiders --install-extension ms-vscode.powershell
3737
```
3838

@@ -44,13 +44,13 @@ Example scripts are included with the extension and can be found at the followin
4444

4545
To open or view the examples in Visual Studio Code, run the following from your PowerShell command prompt:
4646

47-
```
47+
```bash
4848
code (Get-ChildItem $Home\.vscode\extensions\ms-vscode.PowerShell-*\examples)[-1]
4949
```
5050

5151
If using the [Insiders](/insiders) edition:
5252

53-
```
53+
```bash
5454
code-insiders (Get-ChildItem $Home\.vscode\extensions\ms-vscode.PowerShell-*\examples)[-1]
5555
```
5656

docs/other/office.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Visual Studio Code is a great tool to help you develop your custom Office Add-in
3636

3737
Open the project in Visual Studio Code by entering the following on the command line from within the same folder where you ran the generator:
3838

39-
```
39+
```bash
4040
code .
4141
```
4242

@@ -58,7 +58,7 @@ Office Add-ins must be installed, or registered, with the Office application in
5858

5959
### Side loading Mail Add-ins
6060

61-
Mail Add-ins can be installed within the Outlook Web App. Browse to your Outlook Web App (https://mail.office365.com) and login. Once logged in, click the gear icon in the top-right section and select **Manage add-ins**:
61+
Mail Add-ins can be installed within the Outlook Web App. Browse to your [Outlook Web App](https://mail.office365.com) and login. Once logged in, click the gear icon in the top-right section and select **Manage add-ins**:
6262

6363
![Manage Add-ins](images/office/owamanageaddins.png)
6464

docs/python/debugging.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ Remote debugging allows you to step through a program locally within VS Code whi
231231

232232
1. Launch the remote process _through_ ptvsd, for example:
233233

234-
```
234+
```bash
235235
python3 -m ptvsd --host 1.2.3.4 --port 3000 -m myproject
236236
```
237237

docs/python/environments.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -214,13 +214,13 @@ As noted earlier, Visual Studio automatically detects existing conda environment
214214

215215
For example, the following command creates a conda environment *without* an interpreter, so VS Code doesn't display it in the list of available interpreters:
216216

217-
```
217+
```bash
218218
conda create --name env-00
219219
```
220220

221221
In contrast, the following command creates a conda environment with a the Python 3.4 interpreter and several libraries. Because the environment contains an interpreter (which you can see in the Anaconda `envs/env-01` folder created by this command), VS Code includes it in its list:
222222

223-
```
223+
```bash
224224
conda create -n env-01 python=3.4 scipy=0.15.0 astroid babel
225225
```
226226

docs/python/linting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ To control which Pylint messages are shown, add the following contents to an opt
148148

149149
You can easily generate an options file using Pylint itself:
150150

151-
```
151+
```bash
152152
pylint --generate-rcfile > .pylintrc
153153
```
154154

docs/python/python-tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ To successfully complete this tutorial, you must do the following:
3434

3535
At a command prompt or terminal, create an empty folder called "hello", navigate into it, and open VS Code (`code`) in that folder (`.`) by entering the following commands:
3636

37-
```
37+
```bash
3838
mkdir hello
3939
cd hello
4040
code .

docs/setup/linux.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ sudo zypper install code
8383

8484
There is a community maintained Arch User Repository (AUR) [package for VS Code](https://aur.archlinux.org/packages/visual-studio-code-bin).
8585

86-
To get more information about the installation from the AUR, please consult the following wiki entry:
86+
To get more information about the installation from the AUR, please consult the following wiki entry:
8787
[Install AUR Packages](https://wiki.archlinux.org/index.php/Arch_User_Repository#Build_and_install_the_package).
8888

8989

0 commit comments

Comments
 (0)