Skip to content

Commit 872be87

Browse files
committed
(doc) Markdown lint fixes
1 parent 39d0d39 commit 872be87

File tree

3 files changed

+14
-17
lines changed

3 files changed

+14
-17
lines changed

docs/input/docs/installation/chocolatey.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ Order: 10
33
Title: Via Chocolatey
44
---
55

6-
# Via Chocolatey
7-
86
It is possible to install the portable version of GitReleaseManager using Chocolatey. Simply execute the following installation command:
97

10-
```choco install gitreleasemanager.portable```
8+
```bash
9+
choco install gitreleasemanager.portable
10+
```
1111

1212
:::{.alert .alert-info}
1313
Depending on which version of Chocolatey you are using, you may be required to confirm the installation of the application. You can avoid this prompt using the following command:
@@ -17,16 +17,16 @@ Depending on which version of Chocolatey you are using, you may be required to c
1717

1818
Once installed, GitReleaseManager should be immediately available on the command line. You can either use:
1919

20-
```
20+
```bash
2121
gitreleasemanager
2222
```
2323

2424
or:
2525

26-
```
26+
```bash
2727
grm
2828
```
2929

3030
Which should then output something similar to the following:
3131

32-
![GitReleaseManager Usage](../images/grm-usage.png)
32+
![GitReleaseManager Usage](../images/grm-usage.png)

docs/input/docs/installation/dotnettool.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,9 @@ Order: 30
33
Title: Via .Net Global Tool
44
---
55

6-
# Via .Net Global Tool
7-
86
It is possible to install GitReleaseManager as a .Net Global Tool. Simply execute the following command:
97

10-
```
8+
```bash
119
dotnet tool install --global GitReleaseManager.Tool
1210
```
1311

@@ -17,6 +15,6 @@ This will require that .Net Core is installed on the machine which you are tryin
1715

1816
Once installed, GitReleaseManager should be immediately available on teh command line. You can call:
1917

20-
```
18+
```bash
2119
dotnet-gitreleasemanager
22-
```
20+
```

docs/input/docs/installation/nuget.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,10 @@
22
Order: 20
33
Title: Via NuGet
44
---
5+
It is possible to install GitReleaseManager as a Solution Level package in Visual Studio using NuGet. Simply execute the following installation command:
56

6-
# Via NuGet
7+
```bash
8+
Install-Package GitReleaseManager
9+
```
710

8-
It is possible to install GitReleaseManager as a Solution Level package in Visual Studio using Nuget. Simply execute the following installation command:
9-
10-
```Install-Package GitReleaseManager```
11-
12-
This will add the GitReleaseManager into the packages folder for your Solution, which can then be consumed within your build process.
11+
This will add the GitReleaseManager into the packages folder for your Solution, which can then be consumed within your build process.

0 commit comments

Comments
 (0)