We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e55f726 commit 99e4a84Copy full SHA for 99e4a84
base/markdown/Common/block.jl
@@ -19,7 +19,7 @@ function paragraph(stream::IO, md::MD)
19
while !eof(stream)
20
char = read(stream, Char)
21
if char == '\n' || char == '\r'
22
- char == '\r' && peek(stream) == '\n' && read(stream, Char)
+ char == '\r' && Char(peek(stream)) == '\n' && read(stream, Char)
23
if prev_char == '\\'
24
write(buffer, '\n')
25
elseif blankline(stream) || parse(stream, md, breaking = true)
0 commit comments