11# User Guide for duke bot
2-
3- ## Features
4-
5- ### Say bye to duke ` bye `
2+ 1 . [ Features] ( #1-features ) <br >
3+ 1.1 [ Say bye to duke: ` bye ` ] ( #11-say-bye-to-duke-bye ) <br >
4+ 1.2 [ Find a task: ` find ` ] ( #12-find-a-task-find ) <br >
5+ 1.3 [ Delete a task: ` delete ` ] ( #13-delete-a-task-delete ) <br >
6+ 1.4 [ Create a todo task: ` todo ` ] ( #14-create-a-todo-task-todo ) <br >
7+ 1.5 [ Create a deadline task: ` deadline ` ] ( #15-create-a-deadline-task-deadline ) <br >
8+ 1.6 [ Create a event task: ` event ` ] ( #16-create-a-event-task-event ) <br >
9+ 1.7 [ List your tasks: ` list ` ] ( #17-list-your-tasks-list ) <br >
10+ 1.8 [ Find out statistics: ` stats ` ] ( #18-find-out-statistics-stats ) <br >
11+ 1.9 [ Says hi to duke: ` hi ` ] ( #19-says-hi-to-duke-hi ) <br >
12+ 2.0 [ Mark your task done: ` done ` ] ( #20-mark-your-task-done-done ) <br >
13+ 2 . [ Command Summary] ( #2-command-summary )
14+ ## 1. Features
15+
16+ ### 1.1 Say bye to duke ` bye `
617
718Exit the program.
819
920Input instruction:
1021
1122` bye `
1223
13- ### Find a task ` find `
24+ ### 1.2 Find a task ` find `
1425
15- Find the expected task with given index in the task list .
26+ Find the expected task with given keyword .
1627
1728Input instruction:
1829
19- ` find ` + ` index `
30+ ` find ` + ` keyword `
2031
2132Example of usage: find 1
2233
23- ### Delete a task ` delete `
34+ ### 1.3 Delete a task ` delete `
2435
2536Delete the expected task with given index in the task list.
2637
@@ -30,7 +41,7 @@ Input instruction:
3041
3142Example of usage: delete 1
3243
33- ### Create a todo task ` todo `
44+ ### 1.4 Create a todo task ` todo `
3445
3546Create a task that you are going to do and store in the tasklist.
3647
@@ -40,7 +51,7 @@ Input instruction:
4051
4152Example of usage: todo play games
4253
43- ### Create a deadline task ` deadline `
54+ ### 1.5 Create a deadline task ` deadline `
4455
4556Create a task with a deadline
4657
@@ -50,7 +61,7 @@ Input instruction:
5061
5162Example of usage: deadline finish homework /by 2020-05-12
5263
53- ### Create a event task ` event `
64+ ### 1.6 Create a event task ` event `
5465
5566Create an event
5667
@@ -60,7 +71,7 @@ Input instruction:
6071
6172Example of usage: event celebrate holiday /at 2020-05-12
6273
63- ### List your tasks ` list `
74+ ### 1.7 List your tasks ` list `
6475
6576Show the list of tasks
6677
@@ -70,7 +81,7 @@ Input instruction:
7081
7182Example of usage: list
7283
73- ### Find out statistics ` stats `
84+ ### 1.8 Find out statistics ` stats `
7485
7586Show the number of task completed
7687
@@ -80,7 +91,7 @@ Input instruction:
8091
8192Example of usage: stats
8293
83- ### Says hi to duke ` hi `
94+ ### 1.9 Says hi to duke ` hi `
8495
8596Greet the bot and it will greet you back
8697
@@ -90,7 +101,7 @@ Input instruction:
90101
91102Example of usage: hi
92103
93- ### Mark your task done ` done `
104+ ### 2.0 Mark your task done ` done `
94105
95106Mark your task done
96107
@@ -100,6 +111,20 @@ Input instruction:
100111
101112Example of usage: done 1
102113
114+ ## 2. Command summary
115+
116+ Action | Format, Examples
117+ --------|------------------
118+ ** Find Task** | ` find keyword ` <br > e.g.,` find homework `
119+ ** Delete Task** | ` delete index ` <br > e.g.,` delete 1 `
120+ ** Todo Task** | ` todo description ` <br > e.g., ` doto play games `
121+ ** Deadline Task** | ` deadline description /by YYYY-MM-DD ` <br > e.g., ` deadline finish homework /by 2020-05-12 `
122+ ** Event Task** | ` event description /at YYYY-MM-DD ` <br > e.g., ` event celebrate holiday /at 2020-05-12 `
123+ ** List Task** | ` list ` <br >
124+ ** Stats** | ` stats ` <br >
125+ ** Done** | ` done index ` <br > e.g., ` done 1 `
126+ ** Bye** | ` bye ` <br >
127+
103128//@@author dcchan98-reused
104129//Reused from https://github.com/dcchan98/ip/blob/master/src/main/java/Storage.java with minor modification
105130
0 commit comments