@@ -17,6 +17,12 @@ explain: `INPUT[toggle:TQ_explain]`
17
17
18
18
(assuming there is not one called ` xxxx ` !)
19
19
20
+ ```` text
21
+ ```tasks
22
+ include xxxx
23
+ ```
24
+ ````
25
+
20
26
``` tasks
21
27
include xxxx
22
28
```
@@ -25,13 +31,25 @@ include xxxx
25
31
26
32
explain: ` INPUT[toggle:TQ_explain] `
27
33
34
+ ```` text
35
+ ```tasks
36
+ ```
37
+ ````
38
+
28
39
``` tasks
29
40
```
30
41
31
42
## Hide all the fields
32
43
33
44
explain: ` INPUT[toggle:TQ_explain] `
34
45
46
+ ```` text
47
+ ```tasks
48
+ include hide_all_dates
49
+ include hide_other_fields
50
+ ```
51
+ ````
52
+
35
53
``` tasks
36
54
include hide_all_dates
37
55
include hide_other_fields
@@ -41,6 +59,12 @@ include hide_other_fields
41
59
42
60
explain: ` INPUT[toggle:TQ_explain] `
43
61
62
+ ```` text
63
+ ```tasks
64
+ include hide_buttons
65
+ ```
66
+ ````
67
+
44
68
``` tasks
45
69
include hide_buttons
46
70
```
@@ -49,6 +73,12 @@ include hide_buttons
49
73
50
74
explain: ` INPUT[toggle:TQ_explain] `
51
75
76
+ ```` text
77
+ ```tasks
78
+ include just_the_description_and_tags
79
+ ```
80
+ ````
81
+
52
82
``` tasks
53
83
include just_the_description_and_tags
54
84
```
@@ -59,6 +89,15 @@ include just_the_description_and_tags
59
89
60
90
explain: ` INPUT[toggle:TQ_explain] `
61
91
92
+ ```` text
93
+ ```tasks
94
+ # For debug/explanatory purposes, show the source of the Include as a group name:
95
+ group by function const x = "{{includes.filter_by_context}}"; return x
96
+
97
+ {{includes.filter_by_context}}('home')
98
+ ```
99
+ ````
100
+
62
101
``` tasks
63
102
# For debug/explanatory purposes, show the source of the Include as a group name:
64
103
group by function const x = "{{includes.filter_by_context}}"; return x
@@ -70,6 +109,16 @@ group by function const x = "{{includes.filter_by_context}}"; return x
70
109
71
110
explain: ` INPUT[toggle:TQ_explain] `
72
111
112
+ ```` text
113
+ ```tasks
114
+ # For debug/explanatory purposes, show the source of the Include as a group name:
115
+ group by function const x = "{{includes.extract_contexts_1}}"; return x
116
+
117
+ # includes.extract_contexts_1 value needs to be surrounded by parentheses ():
118
+ filter by function return ({{includes.extract_contexts_1}})('home')
119
+ ```
120
+ ````
121
+
73
122
``` tasks
74
123
# For debug/explanatory purposes, show the source of the Include as a group name:
75
124
group by function const x = "{{includes.extract_contexts_1}}"; return x
@@ -82,6 +131,16 @@ filter by function return ({{includes.extract_contexts_1}})('home')
82
131
83
132
explain: ` INPUT[toggle:TQ_explain] `
84
133
134
+ ```` text
135
+ ```tasks
136
+ # For debug/explanatory purposes, show the source of the Include as a group name:
137
+ group by function const x = "{{includes.extract_contexts_2}}"; return x
138
+
139
+ # includes.extract_contexts_1 value has the parentheses, to simplify use:
140
+ filter by function {{includes.extract_contexts_2}}('home')
141
+ ```
142
+ ````
143
+
85
144
``` tasks
86
145
# For debug/explanatory purposes, show the source of the Include as a group name:
87
146
group by function const x = "{{includes.extract_contexts_2}}"; return x
0 commit comments