Skip to content

Commit c20a8bc

Browse files
Merge pull request #18229 from MichaelHatherly/mh/list-no-blanks
Don't require blank line before markdown lists
2 parents 2961c4d + d8da082 commit c20a8bc

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

base/markdown/Common/block.jl

+1
Original file line numberDiff line numberDiff line change
@@ -263,6 +263,7 @@ isordered(list::List) = list.ordered >= 0
263263
const BULLETS = r"^ {0,3}(\*|\+|-)( |$)"
264264
const NUM_OR_BULLETS = r"^ {0,3}(\*|\+|-|\d+(\.|\)))( |$)"
265265

266+
@breaking true ->
266267
function list(stream::IO, block::MD)
267268
withstream(stream) do
268269
bullet = startswith(stream, NUM_OR_BULLETS; eat = false)

test/markdown.jl

+27
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,33 @@ let doc = md"""
166166
@test doc.content[2].items[3][1].content[1] == "zombie"
167167
end
168168

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+
169196
@test md"Foo [bar]" == MD(Paragraph("Foo [bar]"))
170197
@test md"Foo [bar](baz)" != MD(Paragraph("Foo [bar](baz)"))
171198
@test md"Foo \[bar](baz)" == MD(Paragraph("Foo [bar](baz)"))

0 commit comments

Comments
 (0)