-
Notifications
You must be signed in to change notification settings - Fork 124
New issue
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
Paragraphs/HTML blocks may disappear in HTML block with markdown="1" #153
Comments
A similar problems happens with
Passing this section through the parse method breaks later content ( |
I have the same issue. On my local machine everything works fine. But on the production server the parsing breaks. The local machine and the production server have the same PHP Version.
On the production server the second list with
If only the inner tags have the |
I hope I've found the cause. PR is created #155 DOMDocument trim the new line characters in some PHP environments. |
Parsedown Extra trims new line characters in some PHP environments. Parsedown Extra Issue: erusev/parsedown-extra#153 Parsedown Extra PR: erusev/parsedown-extra#155
Parsedown Extra trims new line characters in some PHP environments. Parsedown Extra Issue: erusev/parsedown-extra#153 Parsedown Extra PR: erusev/parsedown-extra#155
Parsedown Extra trims new line characters in some PHP environments. Parsedown Extra Issue: erusev/parsedown-extra#153 Parsedown Extra PR: erusev/parsedown-extra#155
The Markdown source below works fine in my app in my local installation, but gives a different output in my app using the deployed app: the nested div ("More problematic stuff?") and the following paragraph are not rendered at all.
Same versions used in both instances:
It works if I either:
<table>
in a<div>
(I’ll do that for now, but still would like to understand what’s happening)<table>
, or the<div>
following itmarkdown="1"
is ignoredI tried to test it on https://parsedown.org/extra/ but apparently it makes the website crash…
The text was updated successfully, but these errors were encountered: