You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If a multiblock document ends with a text line (only Inlines) not followed by a new line, that last line is interpreted as a Plain, not a Paragraph.
More generally, here are some results when applying parse_blocks to the following strings:
s1 = "A\n\nB" -- A will be a Para, B will be a Plain
s2 = "A\n\nB\n" -- A will be a Para, B will be a Plain
s3 = "A\n\nB\n\n" -- A will be a Para, B will be a Para
It seems to me that B should be a Para for s1 and s2, like in s3.
If however this is as intended, please disregard.
The text was updated successfully, but these errors were encountered:
Not sure if this is intended or a bug.
If a multiblock document ends with a text line (only Inlines) not followed by a new line, that last line is interpreted as a Plain, not a Paragraph.
More generally, here are some results when applying
parse_blocks
to the following strings:It seems to me that B should be a Para for s1 and s2, like in s3.
If however this is as intended, please disregard.
The text was updated successfully, but these errors were encountered: