X Tutup
Skip to content

Commit dadad84

Browse files
authored
Merge pull request exercism#223 from FridaTveit/MarkdownsNumbering
Issue exercism#151: Changed markdowns to have actual number to prevent them b…
2 parents 6d8ec4f + bb24b71 commit dadad84

File tree

2 files changed

+28
-28
lines changed

2 files changed

+28
-28
lines changed

docs/INSTALLATION.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@ Open an administrative command prompt. (If you need assistance opening an admin
2727
```batchfile
2828
C:\Windows\system32> @powershell -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin
2929
```
30-
- Install the JDK:
30+
2. Install the JDK:
3131

3232
```batchfile
3333
C:\Windows\system32> choco install jdk8
3434
...
3535
C:\Windows\system32> refreshenv
3636
...
3737
```
38-
- Install Gradle:
38+
3. Install Gradle:
3939

4040
```batchfile
4141
C:\Windows\system32>choco install gradle
@@ -61,17 +61,17 @@ Below are instructions for install using the most common method - using Homebrew
6161
```sh
6262
$ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
6363
```
64-
- Tap the [Homebrew Cask](https://caskroom.github.io/) — this allows us to install pre-built binaries like the JDK.
64+
2. Tap the [Homebrew Cask](https://caskroom.github.io/) — this allows us to install pre-built binaries like the JDK.
6565

6666
```
6767
$ brew tap caskroom/cask
6868
```
69-
- Install the JDK:
69+
3. Install the JDK:
7070

7171
```
7272
$ brew cask install java
7373
```
74-
- Install Gradle:
74+
4. Install Gradle:
7575

7676
```
7777
$ brew install gradle
@@ -106,7 +106,7 @@ If you are using Debian or its derivatives (like Ubuntu or Linux Mint), use APT:
106106
$ sudo apt-get install oracle-java8-installer
107107
$ sudo apt install oracle-java8-set-default
108108
```
109-
- Install Gradle:
109+
2. Install Gradle:
110110

111111
```sh
112112
$ sudo add-apt-repository ppa:cwchien/gradle
@@ -131,7 +131,7 @@ If you are using Fedora or its derivatives, use DNF:
131131
```sh
132132
$ sudo dnf install java-1.8.0-openjdk-devel
133133
```
134-
- Install Gradle:
134+
2. Install Gradle:
135135

136136
```sh
137137
$ sudo dnf install gradle
@@ -159,7 +159,7 @@ To get started, see "[Running the Tests](http://exercism.io/languages/java/tests
159159
1. Install the JDK:
160160
1. Download "**Java Platform (JDK)**" from [Oracle OTN](http://www.oracle.com/technetwork/java/javase/downloads/index.html).
161161
- Run the installer, using all the defaults.
162-
- Install Gradle:
162+
2. Install Gradle:
163163
- Download "**Binary only distribution**" from the [Gradle download page](https://gradle.org/gradle-download/).
164164
- Unzip the archive. We recommend a place like `C:\Users\JohnDoe\Tools`.
165165
- Add a new system environment variable named `GRADLE_HOME` and set it to the path you just created (e.g. `C:\Users\JohnDoe\Tools\gradle-x.y`).
@@ -178,18 +178,18 @@ To get started, see "[Running the Tests](http://exercism.io/languages/java/tests
178178

179179
1. Install the JDK:
180180
1. Download "**Java Platform (JDK)**" from [Oracle OTN](http://www.oracle.com/technetwork/java/javase/downloads/index.html).
181-
- Run the installer, using all the defaults.
182-
- Install Gradle:
183-
- Download "**Binary only distribution**" from the [Gradle download page](https://gradle.org/gradle-download/).
184-
- Unpack Gradle:
181+
2. Run the installer, using all the defaults.
182+
2. Install Gradle:
183+
1. Download "**Binary only distribution**" from the [Gradle download page](https://gradle.org/gradle-download/).
184+
2. Unpack Gradle:
185185

186186
```sh
187187
$ mkdir ~/tools
188188
$ cd ~/tools
189189
$ unzip ~/Downloads/gradle-*-bin.zip
190190
$ cd gradle*
191191
```
192-
- Configure Gradle and add it to the path:
192+
3. Configure Gradle and add it to the path:
193193

194194
```sh
195195
$ cat << DONE >> ~/.bashrc
@@ -211,18 +211,18 @@ To get started, see "[Running the Tests](http://exercism.io/languages/java/tests
211211
212212
1. Install the JDK:
213213
1. Download "**Java Platform (JDK)**" from [Oracle OTN](http://www.oracle.com/technetwork/java/javase/downloads/index.html).
214-
- Run the installer, using all the defaults.
215-
- Install Gradle:
216-
- Download "**Binary only distribution**" from the [Gradle download page](https://gradle.org/gradle-download/).
217-
- Unpack Gradle:
214+
2. Run the installer, using all the defaults.
215+
2. Install Gradle:
216+
1. Download "**Binary only distribution**" from the [Gradle download page](https://gradle.org/gradle-download/).
217+
2. Unpack Gradle:
218218
219219
```sh
220220
$ mkdir ~/tools
221221
$ cd ~/tools
222222
$ unzip ~/Downloads/gradle-*-bin.zip
223223
$ cd gradle*
224224
```
225-
- Configure Gradle and add it to the path:
225+
3. Configure Gradle and add it to the path:
226226
227227
```sh
228228
$ cat << DONE >> ~/.bashrc

docs/TESTS.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Choose your operating system:
1111
# Windows
1212

1313
1. Open a Command Prompt.
14-
- Get the first exercise:
14+
2. Get the first exercise:
1515

1616
```batchfile
1717
C:\Users\JohnDoe>exercism fetch java
@@ -25,19 +25,19 @@ Choose your operating system:
2525
unchanged: 0, updated: 0, new: 1
2626
2727
```
28-
- Change directory into the exercism:
28+
3. Change directory into the exercism:
2929

3030
```batchfile
3131
C:\Users\JohnDoe>cd C:\Users\JohnDoe\exercism\java\hello-world
3232
```
3333

34-
- Run the tests:
34+
4. Run the tests:
3535

3636
```batchfile
3737
C:\Users\JohnDoe>gradle test
3838
```
3939
*(Don't worry about the tests failing, at first, this is how you begin each exercise.)*
40-
- Solve the exercise. Find and work through the `GETTING_STARTED.md` guide ([view on GitHub](https://github.com/exercism/xjava/blob/master/exercises/hello-world/GETTING_STARTED.md)).
40+
5. Solve the exercise. Find and work through the `GETTING_STARTED.md` guide ([view on GitHub](https://github.com/exercism/xjava/blob/master/exercises/hello-world/GETTING_STARTED.md)).
4141

4242

4343
Good luck! Have fun!
@@ -59,18 +59,18 @@ If you get stuck, at any point, don't forget to reach out for [help](http://exer
5959
unchanged: 0, updated: 0, new: 1
6060
6161
```
62-
- Change directory into the exercise:
62+
2. Change directory into the exercise:
6363

6464
```
6565
$ cd /Users/johndoe/exercism/java/hello-world
6666
```
67-
- Run the tests:
67+
3. Run the tests:
6868

6969
```
7070
$ gradle test
7171
```
7272
*(Don't worry about the tests failing, at first, this is how you begin each exercise.)*
73-
- Solve the exercise. Find and work through the `GETTING_STARTED.md` guide ([view on GitHub](https://github.com/exercism/xjava/blob/master/exercises/hello-world/GETTING_STARTED.md)).
73+
4. Solve the exercise. Find and work through the `GETTING_STARTED.md` guide ([view on GitHub](https://github.com/exercism/xjava/blob/master/exercises/hello-world/GETTING_STARTED.md)).
7474

7575
Good luck! Have fun!
7676

@@ -91,18 +91,18 @@ If you get stuck, at any point, don't forget to reach out for [help](http://exer
9191
unchanged: 0, updated: 0, new: 1
9292
9393
```
94-
- Change directory into the exercise:
94+
2. Change directory into the exercise:
9595

9696
```
9797
$ cd /home/johndoe/exercism/java/hello-world
9898
```
99-
- Run the tests:
99+
3. Run the tests:
100100

101101
```
102102
$ gradle test
103103
```
104104
*(Don't worry about the tests failing, at first, this is how you begin each exercise.)*
105-
- Solve the exercise. Find and work through the `GETTING_STARTED.md` guide ([view on GitHub](https://github.com/exercism/xjava/blob/master/exercises/hello-world/GETTING_STARTED.md)).
105+
4. Solve the exercise. Find and work through the `GETTING_STARTED.md` guide ([view on GitHub](https://github.com/exercism/xjava/blob/master/exercises/hello-world/GETTING_STARTED.md)).
106106

107107
Good luck! Have fun!
108108

0 commit comments

Comments
 (0)
X Tutup