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
Markdown parse works well for single line, but when add multiple lines of markdown text, then it only parse the first line.
We've stored markdown content in database. the content is like this as demo in Post ==> description column -
Post
description
# Beautiful Markdown Document using Laravel Markdown Learn about Markdown - [Markdown](https://en.wikipedia.org/wiki/Markdown) ---- #### PHP Markdown Example ```php $name = "John"; $age = 20; echo 'Hello ' . $name . ' you are ' . $age . ' years old.'; #### Image Example ![Markdown Logo](https://raw.githubusercontent.com/adam-p/markdown-here/master/src/common/images/icon48.png)
markdown()->parser()->parse($post->description);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description:
Markdown parse works well for single line, but when add multiple lines of markdown text, then it only parse the first line.
Steps To Reproduce:
We've stored markdown content in database. the content is like this as demo in
Post
==>description
column -The text was updated successfully, but these errors were encountered: