Skip to content

Commit

Permalink
Merge pull request #2036 from techytushar/hacktober
Browse files Browse the repository at this point in the history
Improve markdown formatting
  • Loading branch information
Greg Van Liew committed Oct 20, 2018
2 parents 518cb0b + cd05db6 commit ae38f4b
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 16 deletions.
3 changes: 1 addition & 2 deletions docs/getstarted/theme-color-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -568,7 +568,7 @@ If you target VS Code versions before the 1.21 (February 2018) release, these ar
- `settings.dropdownBackground`: Dropdown background.
- `settings.dropdownForeground`: Dropdown foreground.
- `settings.dropdownBorder`: Dropdown border.
* `settings.dropdownListBorder`: Dropdown list border.
- `settings.dropdownListBorder`: Dropdown list border.
- `settings.checkboxBackground`: Checkbox background.
- `settings.checkboxForeground`: Checkbox foreground.
- `settings.checkboxBorder`: Checkbox border.
Expand Down Expand Up @@ -600,4 +600,3 @@ The theme colors for snippets:
## Extension Colors

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.

5 changes: 3 additions & 2 deletions docs/languages/css.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ You can hide VS Code's color previews by setting the following [setting](/docs/g
```

To just disable it for css, Less and SCSS, use

```json
"[css]": {
"editor.colorDecorators": false
Expand Down Expand Up @@ -108,7 +109,7 @@ For this walkthrough, let's use either the [node-sass](https://www.npmjs.com/pac
>**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.
```
```bash
npm install -g node-sass less
```
Expand Down Expand Up @@ -202,7 +203,7 @@ We will use [Gulp](https://gulpjs.com/) to create a task that will automate Sass

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

```
```bash
npm install -g gulp
npm install gulp gulp-sass gulp-less
```
Expand Down
2 changes: 1 addition & 1 deletion docs/languages/markdown.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ VS Code integrates with Markdown compilers through the integrated [task runner](

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

```
```bash
npm install -g markdown-it
```

Expand Down
6 changes: 3 additions & 3 deletions docs/languages/powershell.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ code --install-extension ms-vscode.powershell

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

```
```bash
code-insiders --install-extension ms-vscode.powershell
```

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

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

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

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

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

Expand Down
4 changes: 2 additions & 2 deletions docs/other/office.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Visual Studio Code is a great tool to help you develop your custom Office Add-in

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:

```
```bash
code .
```

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

### Side loading Mail Add-ins

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**:
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**:

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

Expand Down
2 changes: 1 addition & 1 deletion docs/python/debugging.md
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ Remote debugging allows you to step through a program locally within VS Code whi

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

```
```bash
python3 -m ptvsd --host 1.2.3.4 --port 3000 -m myproject
```

Expand Down
4 changes: 2 additions & 2 deletions docs/python/environments.md
Original file line number Diff line number Diff line change
Expand Up @@ -214,13 +214,13 @@ As noted earlier, Visual Studio automatically detects existing conda environment

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:

```
```bash
conda create --name env-00
```

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:

```
```bash
conda create -n env-01 python=3.4 scipy=0.15.0 astroid babel
```

Expand Down
2 changes: 1 addition & 1 deletion docs/python/linting.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ To control which Pylint messages are shown, add the following contents to an opt

You can easily generate an options file using Pylint itself:

```
```bash
pylint --generate-rcfile > .pylintrc
```

Expand Down
2 changes: 1 addition & 1 deletion docs/python/python-tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ To successfully complete this tutorial, you must do the following:

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:

```
```bash
mkdir hello
cd hello
code .
Expand Down
2 changes: 1 addition & 1 deletion docs/setup/linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ sudo zypper install code

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

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


Expand Down

0 comments on commit ae38f4b

Please sign in to comment.