content.txt
2.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
!2 Test Collapsable sections
When a section of wiki test is surrounded by:
* !-!*** ... ***!-! it is rendered as a collapsable section;
* !-!**> ... ***!-! it is rendered as a collapsed section;
* !-!**< ... ***!-! it is rendered as a invisible section;
The number of stars is optional; at least one is required at the start and end.
The formal format for using this widget involved multiple lines and looks like so:
#---------------------------------------------------
{{{TOP
!*** section title
content
more content
****************!
BOTTOM
}}}
and will be rendered as:
TOP
!*** section title
content
more content
****************!
BOTTOM
#---------------------------------------------------
-----
{{{TOP
!**> section title
content
more content
****************!
BOTTOM
}}}
and will be rendered as:
TOP
!***> section title
content
more content
****************!
BOTTOM
#---------------------------------------------------
-----
{{{TOP
!**< section title
content
more content
****************!
BOTTOM
}}}
and will be rendered as:
TOP
!**< section title
content
more content
****************!
BOTTOM
!*> Scenarios
!|scenario|given a page with a collapsible section containing|text|
|given page|PageWithCollapsibleSection|with content|!** My Section!-<br>-!@text!-<br>-!****!|
!|scenario|given a page with a collapsed section containing|text|
|given page|PageWithCollapsibleSection|with content|!*> My Section!-<br>-!@text!-<br>-!****!|
!|scenario|given a page with an invisible section containing|text|
|given page|PageWithCollapsibleSection|with content|!*< My Section!-<br>-!@text!-<br>-!****!|
!|scenario|the content|text|should be in a div|
|it should match|<div>@text(<br/>)?</div>|
!|scenario|it should have|text|within a|class|div|
|the content|@text|should be in a div|
|and it should have a collapsible div|
!|scenario|and it should have a collapsible div|
|and should contain|div class="collapsible|
|and should contain|p class="title">My Section|
*!
!|script|
|given a page with a collapsible section containing|line one!-<br/>-!line two|
|it should have|line one!-<br/>-!line two|within a|collapsible|div|
||
|given a page with a collapsed section containing|line one!-<br/>-!line two|
|it should have|line one!-<br/>-!line two|within a|invisible|div|
||
|given a page with an invisible section containing|line one!-<br/>-!line two|
|the content|line one!-<br/>-!line two|should be in a div|