File tree 2 files changed +28
-0
lines changed
2 files changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -263,6 +263,7 @@ isordered(list::List) = list.ordered >= 0
263
263
const BULLETS = r" ^ {0,3}(\* |\+ |-)( |$)"
264
264
const NUM_OR_BULLETS = r" ^ {0,3}(\* |\+ |-|\d +(\. |\) ))( |$)"
265
265
266
+ @breaking true ->
266
267
function list (stream:: IO , block:: MD )
267
268
withstream (stream) do
268
269
bullet = startswith (stream, NUM_OR_BULLETS; eat = false )
Original file line number Diff line number Diff line change @@ -166,6 +166,33 @@ let doc = md"""
166
166
@test doc. content[2 ]. items[3 ][1 ]. content[1 ] == " zombie"
167
167
end
168
168
169
+ let doc = Markdown. parse (
170
+ """
171
+ A paragraph...
172
+ - one
173
+ - two
174
+ * three
175
+ * four
176
+ ... another paragraph.
177
+ """
178
+ )
179
+
180
+ @test length (doc. content) === 3
181
+ @test isa (doc. content[1 ], Markdown. Paragraph)
182
+ @test isa (doc. content[2 ], Markdown. List)
183
+ @test isa (doc. content[3 ], Markdown. Paragraph)
184
+
185
+ @test length (doc. content[2 ]. items) === 2
186
+ @test doc. content[2 ]. items[1 ][1 ]. content[1 ] == " one"
187
+ @test length (doc. content[2 ]. items[2 ]) == 2
188
+ @test doc. content[2 ]. items[2 ][1 ]. content[1 ] == " two"
189
+
190
+ @test isa (doc. content[2 ]. items[2 ][2 ], Markdown. List)
191
+ @test length (doc. content[2 ]. items[2 ][2 ]. items) === 2
192
+ @test doc. content[2 ]. items[2 ][2 ]. items[1 ][1 ]. content[1 ] == " three"
193
+ @test doc. content[2 ]. items[2 ][2 ]. items[2 ][1 ]. content[1 ] == " four"
194
+ end
195
+
169
196
@test md " Foo [bar]" == MD (Paragraph (" Foo [bar]" ))
170
197
@test md " Foo [bar](baz)" != MD (Paragraph (" Foo [bar](baz)" ))
171
198
@test md " Foo \[ bar](baz)" == MD (Paragraph (" Foo [bar](baz)" ))
You can’t perform that action at this time.
0 commit comments