You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: survey.md
+16-16
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ The survery system with CSV import.
6
6
### Definition
7
7
Write a element in one line. Parameters are split by ",". Param0 is a tag and it use following parameters.
8
8
```
9
-
<Tag>,<Param1>,<Param2>,...,<ParamN>
9
+
<Tag>,<Id>,<Param1>,<Param2>,...,<ParamN>
10
10
```
11
11
12
12
### Introduction of Tags
@@ -15,69 +15,69 @@ Write a element in one line. Parameters are split by ",". Param0 is a tag and it
15
15
A "section" tag shows large title.
16
16
> Definition
17
17
```
18
-
section,<Title:Text>
18
+
section,<Id>,<Title:Text>
19
19
```
20
20
> Example
21
21
```
22
-
section,Please answer following questions.
22
+
section,section1,Please answer following questions.
23
23
```
24
24
25
25
#### text
26
26
A "text" tag shows a one-line text field.
27
27
> Definition
28
28
```
29
-
text,<Question:Text>,<isRequired:Number>
29
+
text,<Id>,<Question:Text>,<isRequired:Number>
30
30
```
31
31
> Example
32
32
```
33
-
text,What's your name?,1
33
+
text,name,What's your name?,1
34
34
```
35
35
36
36
#### longtext
37
37
A "longtext" tag shows a textarea.
38
38
> Definition
39
39
```
40
-
longtext,<Question:Text>,<isRequired:Number>
40
+
longtext,<Id>,<Question:Text>,<isRequired:Number>
41
41
```
42
42
> Example
43
43
```
44
-
longtext,Write down your idea of future.,1
44
+
longtext,idea,Write down your idea of future.,1
45
45
```
46
46
47
47
#### check
48
48
A "check" tag shows selection using checkboxes. It mainly used for multiple selection questions. You can show text field for "other", adding id= element at the end of the line.
check,Which are your favarite foods?,0,Takoyaki,Humburgers,Cakes,Noodles
56
+
check,foods1,Which are your favarite foods?,0,Takoyaki,Humburgers,Cakes,Noodles
57
57
```
58
58
> Example
59
59
```
60
-
check,Which are your favarite foods?,0,Takoyaki,Humburgers,Cakes,Noodles,id=otherFood
60
+
check,foods2,Which are your favarite foods?,0,Takoyaki,Humburgers,Cakes,Noodles,id=otherFood
61
61
```
62
62
63
63
#### radio
64
64
A "radio" tag shows selection using radio button. It mainly used for single selection questions. You can show text field for "other", adding id= element at the end of the line.
0 commit comments