Skip to content

Commit

Permalink
Merge pull request #37 from moreTriangles/user-guide
Browse files Browse the repository at this point in the history
Remove syntax highlighting for code blocks in User Guide
  • Loading branch information
adamozh authored Sep 29, 2021
2 parents b1cf922 + f652dbb commit 2516a7e
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions docs/UserGuide.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,13 @@ Adds a person to the address book.

Format:

```lua
```
add n/<NAME> te/<TELEGRAM> [p/<PHONE_NUMBER>] [e/<EMAIL>] [a/<ADDRESS>] [t/<TAG>]
```

Example:

```lua
```
add n/John Doe te/@johndoe123 p/98765432 e/[email protected] a/John street, block 123, #01-01
```

Expand All @@ -76,13 +76,13 @@ Deletes the specified person from the address book.

Format:

```bash
```
delete <INDEX>
```

Example:

```bash
```
delete 7
```

Expand All @@ -94,13 +94,13 @@ Edits an existing person in the address book.

Format:

```bash
```
edit <INDEX> [n/<NAME>] [p/<PHONE>] [e/<EMAIL>] [a/<ADDRESS>] [t/<TAG>]
```

Example:

```bash
```
edit 1 n/John t/TA
```

Expand All @@ -112,25 +112,25 @@ Finds an existing contact using the given string or tag.

Format 1:

```bash
```
find <STRING>
```

Example 1:

```bash
```
find John
```

Format 2:

```bash
```
find t/<TAG>
```

Example 2:

```bash
```
find friends
```

Expand All @@ -142,27 +142,27 @@ Shows detailed information of a contact. This can be done using the name of the

Format 1:

```lua
```
show <NAME>
```

Example 1:

```bash
```
show John Doe
```

If the exact name is not given, the show function will act similar to find and then you can pick out one contact from the given list.

Format 2:

```lua
```
show <INDEX>
```

Example 2:

```bash
```
show 4
```

Expand All @@ -174,13 +174,13 @@ Imports contacts from the specified JSON file.

Format:

```bash
```
import filename.JSON
```

Example:

```bash
```
import CS2103T.JSON
```

Expand All @@ -192,13 +192,13 @@ Exports contacts to the specified JSON file.

Format

```bash
```
export filename.JSON
```

Example:

```bash
```
export Friends.JSON
```

Expand Down

0 comments on commit 2516a7e

Please sign in to comment.