We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
(new Parsedown)->text("- A\n\n- B\n\n- C\n\n")
this is parsed to
<ul>\n <li>\n <p>A</p>\n </li>\n <li>\n <p>B</p>\n </li>\n <li>C</li>\n </ul>
while I think it should be parsed to
<ul>\n <li>\n <p>A</p>\n </li>\n <li>\n <p>B</p>\n </li>\n <li>\n <p>C</p>\n </li>\n </ul>
is it a bug or I'm using the package wrongly? ref laravel/framework#21197
The text was updated successfully, but these errors were encountered:
I think this is a duplicate of #474. I probably won't be able to test this today, but does applying this patch from #475 solve this issue?
Sorry, something went wrong.
@aidantwoods Yes, I think that patch solves the problem, thanks!
No branches or pull requests
this is parsed to
while I think it should be parsed to
is it a bug or I'm using the package wrongly? ref laravel/framework#21197
The text was updated successfully, but these errors were encountered: