forked from nus-cs2103-AY2122S1/tp
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #37 from moreTriangles/user-guide
Remove syntax highlighting for code blocks in User Guide
- Loading branch information
Showing
1 changed file
with
18 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
``` | ||
|
||
|
@@ -76,13 +76,13 @@ Deletes the specified person from the address book. | |
|
||
Format: | ||
|
||
```bash | ||
``` | ||
delete <INDEX> | ||
``` | ||
|
||
Example: | ||
|
||
```bash | ||
``` | ||
delete 7 | ||
``` | ||
|
||
|
@@ -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 | ||
``` | ||
|
||
|
@@ -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 | ||
``` | ||
|
||
|
@@ -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 | ||
``` | ||
|
||
|
@@ -174,13 +174,13 @@ Imports contacts from the specified JSON file. | |
|
||
Format: | ||
|
||
```bash | ||
``` | ||
import filename.JSON | ||
``` | ||
|
||
Example: | ||
|
||
```bash | ||
``` | ||
import CS2103T.JSON | ||
``` | ||
|
||
|
@@ -192,13 +192,13 @@ Exports contacts to the specified JSON file. | |
|
||
Format | ||
|
||
```bash | ||
``` | ||
export filename.JSON | ||
``` | ||
|
||
Example: | ||
|
||
```bash | ||
``` | ||
export Friends.JSON | ||
``` | ||
|
||
|