@@ -65,7 +65,7 @@ separator in the content portion of the table. For example,
65
65
66
66
= item Heading and single- or multi-line content
67
67
68
- = begin code :skip-test
68
+ = begin code
69
69
= begin table
70
70
hdr col 0 | hdr col 1
71
71
======================
@@ -80,7 +80,7 @@ separator in the content portion of the table. For example,
80
80
81
81
= item Heading and single-line content
82
82
83
- = begin code :skip-test
83
+ = begin code
84
84
= begin table
85
85
hdr col 0 | hdr col 1
86
86
======================
@@ -93,7 +93,7 @@ separator in the content portion of the table. For example,
93
93
contiguous hyphens (V < '-' > ) as the row separator in the content portion
94
94
of the table. For example,
95
95
96
- = begin code :skip-test
96
+ = begin code
97
97
= begin table
98
98
row 0 | row 0
99
99
col 0 | col 1
@@ -116,7 +116,7 @@ empty cells and generate a warning.)
116
116
8. Adding a caption to a table is possible using the C < =begin table >
117
117
line as in this example:
118
118
119
- = begin code :skip-test
119
+ = begin code
120
120
= begin table :caption<My Tasks>
121
121
mow lawn
122
122
take out trash
@@ -126,7 +126,7 @@ take out trash
126
126
Although not a good practice, currently there is in use an alternate
127
127
method of defining a caption as shown in this example:
128
128
129
- = begin code :skip-test
129
+ = begin code
130
130
= begin table :config{caption => "My Tasks"}
131
131
mow lawn
132
132
take out trash
@@ -144,7 +144,7 @@ version C<6.e>.
144
144
Following are examples of valid (Good) tables (taken from the current
145
145
L < Specification Tests|https://github.com/perl6/roast > ).
146
146
147
- = begin code :skip-test
147
+ = begin code
148
148
= begin table
149
149
The Shoveller Eddie Stevens King Arthur's singing shovel
150
150
Blue Raja Geoffrey Smith Master of cutlery
@@ -153,7 +153,7 @@ L<Specification Tests|https://github.com/perl6/roast>).
153
153
= end table
154
154
= end code
155
155
156
- = begin code :skip-test
156
+ = begin code
157
157
=table
158
158
Constants 1
159
159
Variables 10
@@ -162,15 +162,15 @@ L<Specification Tests|https://github.com/perl6/roast>).
162
162
163
163
= end code
164
164
165
- = begin code :skip-test
165
+ = begin code
166
166
= for table
167
167
mouse | mice
168
168
horse | horses
169
169
elephant | elephants
170
170
171
171
= end code
172
172
173
- = begin code :skip-test
173
+ = begin code
174
174
=table
175
175
Animal | Legs | Eats
176
176
=======================
@@ -180,7 +180,7 @@ L<Specification Tests|https://github.com/perl6/roast>).
180
180
181
181
= end code
182
182
183
- = begin code :skip-test
183
+ = begin code
184
184
=table
185
185
Superhero | Secret |
186
186
| Identity | Superpower
@@ -189,7 +189,7 @@ L<Specification Tests|https://github.com/perl6/roast>).
189
189
190
190
= end code
191
191
192
- = begin code :skip-test
192
+ = begin code
193
193
= begin table
194
194
195
195
Secret
@@ -208,7 +208,7 @@ L<Specification Tests|https://github.com/perl6/roast>).
208
208
= end table
209
209
= end code
210
210
211
- = begin code :skip-test
211
+ = begin code
212
212
=table
213
213
X | O |
214
214
---+---+---
@@ -218,7 +218,7 @@ L<Specification Tests|https://github.com/perl6/roast>).
218
218
219
219
= end code
220
220
221
- = begin code :skip-test
221
+ = begin code
222
222
=table
223
223
X O
224
224
===========
@@ -228,7 +228,7 @@ L<Specification Tests|https://github.com/perl6/roast>).
228
228
229
229
= end code
230
230
231
- = begin code :skip-test
231
+ = begin code
232
232
= begin table
233
233
234
234
foo
@@ -244,15 +244,15 @@ trigger an unhandled exception during parsing.
244
244
245
245
= item Mixed column separator types in the same row are not allowed:
246
246
247
- = begin code :skip-test
247
+ = begin code :skip-test<pod error>
248
248
= begin table
249
249
r0c0 + r0c1 | r0c3
250
250
= end table
251
251
= end code
252
252
253
253
= item Mixed visual and whitespace column separator types in the same table are not allowed:
254
254
255
- = begin code :skip-test
255
+ = begin code :skip-test<pod error>
256
256
= begin table
257
257
r0c0 + r0c1 | r0c3
258
258
r1c0 r0c1 r0c3
@@ -261,7 +261,7 @@ r1c0 r0c1 r0c3
261
261
262
262
= item Two consecutive interior row separators are not allowed:
263
263
264
- = begin code :skip-test
264
+ = begin code :skip-test<pod error>
265
265
= begin table
266
266
r0c0 | r0c1
267
267
============
@@ -283,7 +283,7 @@ character, while it takes at least B<two> adjacent WS characters to define
283
283
a column separation. B < This is a valid table but will be parsed as a
284
284
single-column table > .
285
285
286
- = begin code :skip-test
286
+ = begin code
287
287
= begin table
288
288
r0c0 r0c1
289
289
r1c0 r0c1
@@ -300,7 +300,7 @@ be what the user intended because the first row has two
300
300
columns while the second row has only one column, and it will thus have
301
301
an empty second column.
302
302
303
- = begin code :skip-test
303
+ = begin code
304
304
= begin table
305
305
r0c0 | r0c1
306
306
r1c0 |r0c1
0 commit comments