Markdown reader: parse soft break as SoftBreak.

This commit is contained in:
John MacFarlane 2015-12-11 15:33:53 -08:00
parent 83c56bd1ef
commit 63d875c6cb

View file

@ -1679,7 +1679,7 @@ endline = try $ do
(eof >> return mempty)
<|> (guardEnabled Ext_hard_line_breaks >> return (return B.linebreak))
<|> (guardEnabled Ext_ignore_line_breaks >> return mempty)
<|> (return $ return B.space)
<|> (return $ return B.softbreak)
--
-- links